作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将数据注入(inject)布局(不是 subview ),但我还没有找到任何看起来实用的方法。
这是我目前知道的两种方法来实现这一点。为简单起见,我将注入(inject)的数据是页面标题。
方法一
// app/controllers/HomeController.php
protected $layout = 'main';
public function index()
{
$this->layout->title = 'Page Title';
$this->layout->content = View::make('home');
}
// app/views/layout.blade.php
...
<title>{{ $title }}</title>
...
// app/views/home.blade.php
...
@section('title')
Page Title
@stop
...
// app/views/layout.blade.php
...
<title>@yield('title')</title>
...
最佳答案
您可以编辑 BaseController 中的 setupLayout 方法以将数据直接传递给 View::make 调用。
protected function setupLayout()
{
if(!is_null($this->layout))
{
$data = array(
'title' => 'Page Title'
);
$this->layout = View::make($this->layout, $data);
}
}
protected function setupLayout()
{
if(!is_null($this->layout))
{
$this->layout = View::make($this->layout, $this->layoutData);
}
}
$this->layoutData = array('title' => 'Page Title');
关于laravel - 如何将数据注入(inject)布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16311134/
我是一名优秀的程序员,十分优秀!