所以我在我的模板中使用刀片(显然不是最新版本,但这并不重要)
@layout('master')
@section('mainContent')
my contents here
@endsection
它工作得很好,但问题是当我通过 ajax 请求调用页面时,我不想显示布局,只显示 mainContent 部分
像这样的东西....也许更干净
@if(!$is_ajaxCall)
@layout('master')
@endif
@if(!$is_ajaxCall)
@section('mainContent')
@endif
my contents here
@if(!$is_ajaxCall)
@endsection
@endif