本文介绍了刀片有条件扩展的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道这似乎是一个已回答的问题,但是(我希望)不是.
I know this seems like an answered question, but it is not (I hope).
我要寻找的是扩展或不扩展视图的方法:如果请求是ajax调用,则视图不会扩展任何内容.像这样:
What I looking for is a way to extends or NOT a view: if the request is an ajax call the view does not extends nothing. Something like:
@if(!Request::ajax())
@extends('navbar')
@section('home')
<div>"my content"</div>
@stop
@else
<div>"my content"</div>
@endif
这不是我想要的:
@extends((( Request::ajax()) ? 'layouts.ajax' : 'layouts.default' ))
我的意思是,如果请求是ajax调用,我希望视图不展开任何内容.
希望清楚.
谢谢!
推荐答案
使用@include
语句解决
这篇关于刀片有条件扩展的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!