我是 cakephp 的新手。我有一个名为 Rest 的类,由两个控制器共享:页面和类别。
因此,我想到了在 AppController 中创建类的实例:
class AppController extends Controller {
public $rest;
public function DoRest() {
require 'Component/Rest.php';
if(!isset($this->rest))
$this -> rest = new Rest();
return $this -> rest;
}
}
然后我可以在 categoriesController 中访问它:
public function index()
{
if ($this->request->is('requested')) {
return $this -> DoRest() -> getCategories();
} else {
$this -> set('categories', $this -> DoRest() -> getCategories());
}
}
在页面控制器中:
public function category() {
$this -> set('items',$this -> DoRest() -> getCategoryById($this->request->query['id']));
}
在 category.ctp 中,我可以通过以下方式访问类别:
$categories = $this->requestAction('categories/index');
但是现在我收到此错误:
Error: Cannot redeclare class Rest
我做错了什么?