这是书中的示例,一个简单的视图模板
// app/View/Common/view.ctp
<h1><?php echo $this->fetch('title'); ?></h1>
<?php echo $this->fetch('content'); ?>
<div class="actions">
<h3>Related actions</h3>
<ul>
<?php echo $this->fetch('sidebar'); ?>
</ul> </div>
这就是它可以扩展的方式
// app/View/Posts/view.ctp
<?php
$this->extend('/Common/view');
$this->assign('title', $post);
我的问题是: 如何为(比如说)标题设置默认值/内容,以便在需要时覆盖?
谢谢!