我只想在 index.ctp 上显示一个模型的所有结果,这些结果都作为条件成立。像这样选择:
select * from revistas where isonline = 'true';
我已经在控制器上尝试了以下代码:
public function index() {
//$iscond = $this->Revista->findAllByNome('testa');
//$this->Revista->query("SELECT id, nome, acronimo, modified, user_id from xconv.revistas where isonline = 't'");
$this->Revista->find('all', array(
'contain' => array(
'conditions' => array('Revista.isonline' => 't'))));
$this->Revista->recursive = 0;
$this->set('revistas', $this->paginate());
}
上面的那 2 条评论尝试了 b4。它不返回任何错误,但不执行条件。
是否还有其他 MVC 文件可以编写更多代码?什么地方出了错 ??
泰