Laravel include a view with JavaScript(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 的视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!