本文介绍了Laravel 包含一个带有 JavaScript 的视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
I try to include views
in my page via javascript
using the following script:
<script>$('#b').append(
<?php
echo("@include('include.test_include')");
?>
);</script>
But I get an error of unexpected token
.
I have a view in folder views/include/test_include.blade.php
Is there a way to do this :) ?
解决方案
Change your code to the following:
<script>
$('#b').append('@include('include.test_include')');
<script>
More documentation on including subviews in the Laravel documentation
这篇关于Laravel 包含一个带有 JavaScript 的视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!