我正在使用 CakePHP 2.3。我正在尝试缓存我的主页视图。但是将其缓存到 home.php 后,由于错误,我无法加载缓存的视图:
Error: Class 'AuthComponent' not found
File: C:\wamp\www\project\trunk\app\tmp\cache\views\home.php
Line: 87
我使用 AuthComponent 来实现用户是否登录。没有缓存一切正常。
控制器代码:
public $helpers = array('Cache');
public $cacheAction = array(
'home' => '60 minutes',
);
谢谢