8

我将 CacheHelper 添加到我的应用程序中。在我的 APP/Config/core.php 我有

Configure::write('Cache.check', true);

在 APP/Config/bootstrap.php 我有

Configure::write('Dispatcher.filters', array(
  'AssetDispatcher',
  'CacheDispatcher'
));

在我的控制器中,我有:

public $helpers = array('Text', 'Cache');
public $cacheAction = "1 hour";

我在这个控制器和 AppController 中都没有直接的回调。问题是每个页面只加载一次(例如——在缓存被清除之后)。在第二个请求我回来

Fatal Error

Error: Class 'AppController' not found  

如果缓存关闭,一切正常。

CakePHP 版本是 2.2.3

调试日志:

 2012-12-24 12:21:00 Error: Fatal Error (1): Class 'AppController' not found in    [/Volumes/../app/Controller/NewsController.php, line 2]
 2012-12-24 12:21:00 Error: [FatalErrorException] Class 'AppController' not found
 #0 /Volumes/../lib/Cake/Error/ErrorHandler.php(161): ErrorHandler::handleFatalError(1,     'Class 'AppContr...', '/Volumes/Data/D...', 2)
 #1 [internal function]: ErrorHandler::handleError(1, 'Class 'AppContr...', '/Volumes/../D...', 2, Array)
 #2 /Volumes/../lib/Cake/Core/App.php(926): call_user_func('ErrorHandler::h...', 1, 'Class 'AppContr...', '/Volumes/../D...', 2, Array)
 #3 /Volumes/../lib/Cake/Core/App.php(899): App::_checkFatalError()
 #4 [internal function]: App::shutdown()
 #5 {main}

新闻控制器:

<?php
class NewsController extends AppController {
public $components = array('Security', 'ImageTool', 'Uploader');
public $paginate = array(
        'fields' => array('News.id', 'News.created'),
        'limit' => 5,
        'contain' => array(),
        'order' => array('News.id' => 'DESC'));

public $helpers = array('Text', 'Cache');
public $cacheAction = "1 hour";
4

2 回答 2

19

获胜者是... App::uses('AppController', 'Controller'); 在控制器代码的顶部。

App::uses('AppController', 'Controller');

class NewsController extends AppController {
public $helpers = array('Cache');
public $cacheAction = array(
    'index'  => 48000
);

public function index() {

}
public function clear() {
    clearCache();
}
}

我不知道为什么这还没有包含在食谱中。

于 2012-12-26T15:22:11.227 回答
0
<?php
namespace App\Controller;
use App\Controller\AppController;
class StudentsController extends AppController{}

这对我有用。

于 2016-03-24T22:22:19.200 回答