嗯,标题可能有点令人困惑,所以让我对这种情况有所了解。 我在Blade中有一个包含基本html和导航的基本模板,如下所示:
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
@section('title')
<title>Page Title</title>
@show
</head>
<body>
<div id="wrapper">
<header id="logo"></header>
<nav id="mainmenu">
<ul>
<li><a href="page1">Page 1</a></li>
<li><a href="page2">Page 2</a></li>
<li><a href="page3">Page 3</a></li>
<li><a href="page4">Page 4</a></li>
</ul>
</nav>
@yield('content')
</div>
</body>
</html>
然后为每个页面添加一堆子视图,如下所示:
@extends('layouts.base')
@section('title')
<title>Page 1</title>
@stop
@section('content')
<section class="container clearfix">
<h2 class="section-title">Page 1</h2>
<div class="content">
some content here
</div>
</section>
@stop
现在,我想要的是能够有条件地忽略@extends(),这样我就可以返回一个只是子视图的视图,即类“container”部分内的所有内容,以便能够堆叠它可以用于单页面布局或使用AJAX加载。
关于如何实现这一目标的任何想法?
答案 0 :(得分:5)
你可以使用这样的东西
@extends(((condition) ? 'layouts.plain' : 'layouts.base'))
现在创建一个名为plain
的布局,并且不在其中,只保留内容,这样您就可以使用普通布局,例如,选中this answer。
//layouts/plain.blade.php
@yield('content')
答案 1 :(得分:1)
一种可能的解决方案:
$layout
)传递给View,而不是在视图中定义字符串。content
部分。View::make()
。更改子视图中的@extends
:
@extends((isset($layout)) ? $layout : 'layouts.base')
创建新的“仅限内容”布局:/app/views/layouts/content-only.blade.php:
// only this line in the file:
@yield('content')
然后正常使用:
return View::make('child-view');
当您想要仅限内容的版本时:
return View::make('child-view')->with('layout', 'layouts.content-layout');
编辑 - 更新以考虑Sheikh Heera答案的提示!