假設我有這些模型 - 郵政,類別,用戶。發佈所屬類別和用戶。 在我的PostsController裏面的一些動作我想從類別或用戶表中的數據,我可以使用以下 1) public $uses = array('Post', 'Category', 'User') and use Category model like
$this->Category->find('all'); everywhere
在我的訂單模式,我有以下方法來總結訂單的的OrderItems public function getTotalPrice($id = null) {
if (!$this->exists($id)) {
throw new NotFoundException(__('Invalid order'));
}
$total = $this->OrderIte