我可以在cakephp 1.3中给出条件

时间:2010-06-11 11:20:58

标签: cakephp

我在查找功能方面遇到了一些问题。我从取得函数获取值。我有model.contian另一个模型。 我可以在cakephp中给出条件

是否有可能

3 个答案:

答案 0 :(得分:3)

$this->Post->find('all', array('contain' => array(
    'Comment' => array(
        'conditions' => array('Comment.author =' => "Daniel"),
        'order' => 'Comment.created DESC'
    )
)));

您应该始终try the documentation首先:)。

答案 1 :(得分:0)

格式为$ this->模型名称 - > find('all',array('conditions'=> array('Table.name'=> 1)));为你工作?

答案 2 :(得分:-2)

是的,您可以在包含

中提供条件