我有这个控制器方法
class Account_Controller extends Base_Controller
{
public $layout = 'layouts.default';
public function action_index($a,$b)
{
$data['a'] = $a;
$data['b'] = $b;
$this->layout->nest('content', 'test',$data);
}
}
这是我的布局
<div id = "content">
<?php echo Section::yield('content'); ?>
</div>
这是我的 test.php
echo $a;
echo '<br>';
echo $b;
echo 'this is content';
当我访问这个
http://localhost/myproject/public/account/index/name/email
我加载了我的布局,但未加载 test.php。如何在我的模板中加载内容。我不想用刀片。