我尝试使用以下脚本通过views
在页面中加入javascript
:
<script>$('#b').append(
<?php
echo("@include('include.test_include')");
?>
);</script>
但是我收到了unexpected token
的错误。
我在文件夹views/include/test_include.blade.php
中有一个视图
有没有办法做到这一点:)?
答案 0 :(得分:1)
将代码更改为以下内容:
<script>
$('#b').append('@include('include.test_include')');
<script>
有关包括子视图in the Laravel documentation
的更多文档答案 1 :(得分:1)
您应该能够在自己的视图中执行此操作。
<script>
$('#b').append(‘
@include('include.test_include')
‘);
</script>I