例如,我有这种关系:
UserContact hasMany Contact
Contact hasOne Info
Contact hasMany Response
我需要对Contact进行分页,所以我使用Containable:
$this->paginate = array(
'limit'=>50,
'page'=>$page,
'conditions' =>array('Contact.id'=>$id),
'contain'=>array(
'Response',
'Info'
)
);
我想通过Info.name和Response.description添加搜索。它适用于 Info.name ,但如果我尝试使用 Response.description ,则会抛出错误,表示该列不存在。
此外,我尝试将关系更改为Contact hasOne Response,然后正确过滤,但它只返回第一个响应,这不是正确的关系。
因此,例如,如果我有一个搜索键 $ filter ,我只想返回那些匹配 Info.name 或至少有一个的联系人匹配 Response.description 。
答案 0 :(得分:3)
如果你看看CakePHP如何构造SQL查询,你会发现它生成包含“单一”关系(hasOne
和belongsTo
)作为主查询中的连接子句,然后它单独添加查询包含的“多个”关系。
这使得通过单个关系进行过滤变得轻而易举,因为相关模型的表已经在主查询中加入。
为了按多重关系过滤,您必须创建一个子查询:
// in contacts_controller.php:
$conditionsSubQuery = array(
'Response.contact_id = Contact.id',
'Response.description LIKE' => '%'.$filter.'%'
);
$dbo = $this->Contact->getDataSource();
$subQuery = $dbo->buildStatement(array(
'fields' => array('Response.id'),
'table' => $dbo->fullTableName($this->Contact->Response),
'alias' => 'Response',
'conditions' => $conditionsSubQuery
), $this->Contact->Response);
$subQuery = ' EXISTS (' . $subQuery . ') ';
$records = $this->paginate(array(
'Contact.id' => $id,
$dbo->expression($subQuery)
));
但是,如果您需要按Response
字段进行过滤,则只应生成子查询,否则您将过滤掉没有回复的联系人。
PS。此代码太大而且难以出现在控制器中。对于我的项目,我将其重构为app_model.php
,以便每个模型都可以生成自己的子查询:
function makeSubQuery($wrap, $options) {
if (!is_array($options))
return trigger_error('$options is expected to be an array, instead it is:'.print_r($options, true), E_USER_WARNING);
if (!is_string($wrap) || strstr($wrap, '%s') === FALSE)
return trigger_error('$wrap is expected to be a string with a placeholder (%s) for the subquery. instead it is:'.print_r($wrap, true), E_USER_WARNING);
$ds = $this->getDataSource();
$subQuery_opts = array_merge(array(
'fields' => array($this->alias.'.'.$this->primaryKey),
'table' => $ds->fullTableName($this),
'alias' => $this->alias,
'conditions' => array(),
'order' => null,
'limit' => null,
'index' => null,
'group' => null
), $options);
$subQuery_stm = $ds->buildStatement($subQuery_opts, $this);
$subQuery = sprintf($wrap, $subQuery_stm);
$subQuery_expr = $ds->expression($subQuery);
return $subQuery_expr;
}
然后控制器中的代码变为:
$conditionsSubQuery = array(
'Response.contact_id = Contact.id',
'Response.description LIKE' => '%'.$filter.'%'
);
$records = $this->paginate(array(
'Contact.id' => $id,
$this->Contact->Response->makeSubQuery('EXISTS (%s)', array('conditions' => $conditionsSubQuery))
));
答案 1 :(得分:0)
我现在无法尝试,但如果您对Response模型而不是Contact模型进行分页,则应该可以使用。