我正在尝试使用Laravel使用我的默认模板。我来自Codeigniter和Phil Sturgeon的模板系统,所以我试图以类似的方式做到这一点。任何人都可以帮我解决我错过/做错的事吗?谢谢!
//default.blade.php (located in layouts/default)
<html>
<title>{{$title}}</title>
<body>
{{$content}}
</body>
</html>
//end default.blade.php
//home.blade.php (index view including header and footer partials)
@layout('layouts.default')
@include('partials.header')
//code
@include('partials.footer')
//end home
//routes.php (mapping route to home controller)
Route::controller( 'home' );
//end
//home.php (controller)
<?php
class Home_Controller extends Base_Controller {
public $layout = 'layouts.default';
public function action_index()
{
$this->layout->title = 'title';
$this->layout->content = View::make( 'home' );
}
}
//end
答案 0 :(得分:84)
你正在混合两种不同的Laravel布局方法。 这样您就可以渲染布局视图,包含主视图并尝试再次包含布局。
我个人的偏好是控制器方法。
控制器和布局可以保持不变。
注意:作为一种快捷方式,您可以嵌套内容而不是View :: make,当您在布局中回显它时,它会自动呈现它。
在home.blade.php中删除@layout函数。
修改(示例):
控制器/ home.php
<?php
class Home_Controller extends Base_Controller {
public $layout = 'layouts.default';
public function action_index()
{
$this->layout->title = 'title';
$this->layout->nest('content', 'home', array(
'data' => $some_data
));
}
}
视图/布局/ default.blade.php
<html>
<title>{{ $title }}</title>
<body>
{{ $content }}
</body>
</html>
视图/ home.blade.php
部分内容包含在内容中。
@include('partials.header')
{{ $data }}
@include('partials.footer')
如果你想要这种方法,你会遇到一些问题。首先,您将在布局后包含新内容。不确定是否有意,但 @layout 函数本身基本上只是 @include 仅限于视图的开头。因此,如果您的布局是一个封闭的html,那么之后的任何包含都会在您的html布局之后附加。
您的内容应在此处使用 @section 功能部分和 @yield 部分。页眉和页脚可以包含在 @include 的布局中,或者如果您想在内容视图中定义它,那么也将它们放在 @section 中,如下所示。如果你以某种方式定义它,如果一个部分不存在则不会产生任何结果。
控制器/ home.php
<?php
class Home_Controller extends Base_Controller {
public function action_index()
{
return View::make('home')->with('title', 'title');
}
}
视图/布局/ default.blade.php
<html>
<title>{{$title}}</title>
<body>
@yield('header')
@yield('content')
@yield('footer')
</body>
</html>
视图/ home.blade.php
@layout('layouts.default')
@section('header')
header here or @include it
@endsection
@section('footer')
footer
@endsection
@section('content')
content
@endsection
答案 1 :(得分:0)
上面给出的答案解释了如何在Laravel中完成模板操作,但是为了获得额外的好处,例如管理组织到主题目录中的主题,能够在主题之间切换以及部分和主题资源一起听起来几乎与{{{ 3}}。您可能想要检查Laravel的主题包。这是链接: