1

所以,我有这种代码来打印我的索引页:

class PageController extends MediaController {

protected $layout = 'layouts.main';

public function index_page() {
    $data = array();

    $data['title'] = 'Dynamic Title';
    $data['css_files'] = array(
        array('media'=>'all', 'file'=>'file1'),
        array('media'=>'all', 'file'=>'file2')
    );

    $this->layout->content = View::make('index', $data);
}

}

和我的 main.blade.php:

<html>

<head>
    <title>@yield('title')</title>
</head>

<body>
    @yield('content')
    @yield('css_files')
</body>

</html>

和我的 index.blade.php:

@section('title', $title)

@section('css_files')
    @foreach ($css_files as $css_file)
        <p>File: {{ $css_file->file }}, Media: {{ $css_file->media }}</p>
    @endforeach
@stop

@section('content')
    <h1>Rendered Successfully!</h1>
@stop

标题渲染得很好,但是 css 文件打印了这个:

文件:{{ $css_file->file }},媒体:{{ $css_file->media }}

文件:{{ $css_file->file }},媒体:{{ $css_file->media }}

而不是这个:

文件:file1,媒体:全部

文件:file2,媒体:全部

谁能解释为什么?感谢您的帮助,我对 Blade 很陌生。

- 编辑 -

我已经解决了这个问题,我碰巧在编辑 Blade 语法配置

供应商\laravel\framework\Illuminate\view\compilers\BladeCompiler.php

protected $contentTags = array('{{', '}}');

    /**
     * Array of opening and closing tags for escaped echos.
     *
     * @var array
     */
    protected $escapedTags = array('{{{', '}}}');

protected $contentTags = array('{=', '=}');

    /**
     * Array of opening and closing tags for escaped echos.
     *
     * @var array
     */
    protected $escapedTags = array('{={', '}=}');

所以我应该使用 {= 而不是 {{

希望这对将来的某人有所帮助。

4

1 回答 1

1

您在标题部分下方缺少@stop。试着像这样

@section('title')
  {{ $title }}
@stop
于 2013-10-27T10:53:15.510 回答