我正在使用可包含的 CakePHP。我尝试过的代码是...
public function detail($slug = "") {
$this->Poet->contain('User.id', 'User.full_name', 'Song.id', 'Song.name', 'Song.name_hindi', 'Song.slug');
$result = $this->Poet->findBySlug($slug);
if (!$result) {
throw new NotFoundException(__('Invalid Poet - ' . $slug));
}
pr($result);
die();
$this->Poet->id = $result['Poet']['id'];
$this->set('result', $result);
}
像这样。现在我将 Song.status 作为我与 Song 表的关联。我只想获取那些具有status = 1
. 是否可以?我可以用我的代码只选择活动记录吗?