gpt4 book ai didi

php - Laravel Blade 附加到部分无法正常工作

转载 作者:可可西里 更新时间:2023-10-31 23:03:58 25 4
gpt4 key购买 nike

我想从 View 写入模板中的一个区域,也想从包含的 View 写入第一个 View ,但无论我尝试什么,它都不起作用。我试过使用@parent 和@append 但到目前为止没有产生我想要的结果。

在我的布局中,我有以下内容:

@yield('scripts')

在我看来主要有以下内容:

@include('admin/rules/partials/_form')

@section('scripts)
// javascript #1 here
@stop

在 admin/rules/partials/_form 我有以下内容:

@section('scripts)
// javascript #2 here
@stop

所以就像我说的那样,我尝试在@section('scripts') 之后使用@parent 并且还使用@append 而不是@stop,但是我所做的一切都没有正确地包含这两个脚本 block 。到目前为止,我所拥有的最好的是 javascript #1 被包含一次,javascript #2 被包含两次。我该怎么做才能让每个代码块仅附加到脚本区域一次?

最佳答案

我最终解决了这个问题,我必须执行以下操作:

@yield('scripts')

在我看来主要有以下内容:

@include('admin/rules/partials/_form')

@section('scripts')
// javascript #1 here
@stop

在 admin/rules/partials/_form 我有以下内容:

@section('scripts')
@parent
// javascript #2 here
@overwrite

关于php - Laravel Blade 附加到部分无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30784697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com