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
相关文章