我是Laravel的新手,我正试图弄清楚如何使用模板。
我确信我在这里所拥有的东西应该有效,但是当我运行它时我一直都会遇到错误。我认为这与在同一行上使用@yield命令有关。这仅仅是刀片引擎的限制吗?
routes.php文件
Route::get('/', function()
{
return View::make('hello');
});
// Test Route:
Route::get('jtest', function(){
$page = array(
"lang" => "en",
"title" => "jtest",
"css" => "css/layout.css",
"rand" => rand()
);
return View::make('jtest')->with('page', $page);
});
jtest.blade.php
@extends('layout')
@section('html-lang')
@if ( isset($page['lang']) )
{{ $page['lang'] }}
@endif
@endsection
@section('title')
@if ( isset($page['title']) )
{{ $page['title'] }}
@endif
@endsection
@section('meta-description')
@if ( isset($page['meta-description']) )
{{ $page['meta-description'] }}
@endif
@endsection
@section('css')
@if ( isset( $page['css'] ) )
{{ $page['css'] }}
@endif
@endsection
@section('rand')
@if ( isset( $page['rand'] ) )
{{ $page['rand'] }}
@endif
@endsection
layout.blade.php
<!doctype html>
<html lang="@yield('html-lang')">
<head>
<meta charset="utf-8">
<title>@yield('title')</title>
<meta name="description" content="@yield('meta-description')">
<meta name="author" content="Jimmy Hogoboom">
<link rel="stylesheet" href="@yield('css')?r=@yield('rand')">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<script src=""></script>
</body>
</html>
错误是
syntax error, unexpected '='
并且错误的行如下所示:
<link rel="stylesheet" href="<?php echo $__env->yieldContent('css')?r=@yield('rand'); ?>">
问题出在这里:
<link rel="stylesheet" href="@yield('css')?r=@yield('rand')">
如果我删除第二个@yield
:
<link rel="stylesheet" href="@yield('css')?r=">
页面加载正常。
这只是刀片的限制,还是有其他方法我应该将这些值放在页面中?
答案 0 :(得分:2)
最好的办法是将@yield和section仅用于较大的部分,如主要内容或侧边栏。
如果您需要'isset'条件,可以使用
@if(isset($title)){{$title}}@endif
但是这也应该在具有干净php的控制器上完成,包括变量的默认值。
答案 1 :(得分:1)
我不确定为什么你需要使用@yield
作为一件小事。
以下简单代码将完成这项工作:
<link rel="stylesheet" href="{{ $page['css'] }}?r={{ $page['rand'] }}">