cakephp app错误问题

时间:2010-12-23 11:24:23

标签: cakephp

我的app_controller中有以下功能:

function beforeFilter() {
    $this->set('lastThreePosts', $this->Blog->find_latest_posts());
}

然后我使用我在布局中设置的变量'lastThreePosts'。这在我的404页面上工作得很好,我得到以下错误:

Notice (8): Undefined index: lastThreePosts [APP\views\layouts\default.ctp, line 29]

我创建了自己的404页面,在my / views / errors /目录中创建了文件error404.ctp。

因此,当出现404错误时,控制器中的代码无法执行。有谁知道我怎么能让它发挥作用?

由于

1 个答案:

答案 0 :(得分:2)