CakePHP: Controller without View and Model

1) 不使用模型:

$uses = array();

如果不添加这一句,打开debug会提示出错.


2) 不使用视图:

在action中设置

$this->autoRender = false;


3) 不缓存查询

var $cacheAction = false;


iefreer

你可能感兴趣的:(action,cakephp)