时间:2021-07-01 10:21:17 帮助过:62人阅读
laravel 的 {{}} 跟 angularjs冲突了,文档上说 加@ 的,试过可以,但angular 的 模板已经有好多地方用到了,所以只能改laravel 的了,这个有配置吗?
Route::get('/', function()
{
Blade::setEscapedContentTags('[[', ']]');
Blade::setContentTags('[[[', ']]]');
return View::make('home');
});