Symfony2 和 Doctrine2 的新手,我的实体库中有一个功能,可以在表单提交后搜索实体。输入是数组 $get,其中包含 $get['name'] = 'aname' 等表单字段。
我的问题是,当我使用 id 或 id 和名称请求时,只需一个名称就可以了,我的所有实体都匹配,因为已构建的查询没有 where 子句。
这是我的代码:
public function search(array $get, $flag = False){
/* Indexed column (used for fast and accurate table cardinality) */
$alias = 'd';
/* DB table to use */
$tableObjectName = 'mysiteMyBundle:DB';
$qb = $this->getEntityManager()
->getRepository($tableObjectName)
->createQueryBuilder($alias)
->select($alias.'.id');
$arr = array();
//Simple array, will grow after problem solved
$numericFields = array(
'id');
$textFields = array(
'name');
while($el = current($get)) {
$field = key($get);
if ( $field == '' or $field == Null or $el == '' or $el == Null ) {
next($get);
}
if ( in_array($field,$numericFields) ){
if ( is_numeric($el) ){
$arr[] = $qb->expr()->eq($alias.".".$field, $el);
}
} else {
if ( in_array($field,$textFields) ) {
$arr[] = $qb->expr()->like($alias.".".$field, $qb->expr()->literal('%'.$el.'%') );
}
}
next($get);
}
if(count($arr) > 0) $qb->andWhere(new Expr\Orx($arr));
else unset($arr);
$query = $qb->getQuery();
if($flag)
return $query;
else
return $query->getResult();
}
仅使用名称(例如“myname”)输入生成的查询是:
SELECT d0_.id AS id0 FROM DB d0_
它应该是:
SELECT d0_.id AS id0 FROM DB d0_ WHERE d0_.name LIKE '%myname%'
我的代码有什么问题?
谢谢 !