gpt4 book ai didi

laravel-4 - Blade 可以屈服于同一文件中的某个部分吗?

转载 作者:行者123 更新时间:2023-12-04 23:22:03 25 4
gpt4 key购买 nike

我有文件master.blade.php,其中包含@yield('mainsection')。然后我有另一个文件,带有:

@extends('layouts.master')

@section('mainection')
test1
@yield('othersection')
@stop

@section('othersection')
test2
@stop

我可以看到 test1,但看不到 test2,从中可以得出结论, Blade 不允许您屈服于同一文件中定义的部分。有什么办法可以解决这个问题?还是我必须在这两个文件之间添加第三个文件,以包含mainsection和yield到othersection?

最佳答案

可以显示出来,但是必须在@yield之前写上@section

@extends('layouts.master')

@section('othersection')
test2
@stop

@section('mainection')
test1
@yield('othersection')
@stop

关于laravel-4 - Blade 可以屈服于同一文件中的某个部分吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21756692/

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