0

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%'

我的代码有什么问题?

谢谢 !

4

2 回答 2

0

你应该使用setParameter 方法

$query->where('id = :id')->setParameter('id', $id);
于 2012-08-29T01:10:52.557 回答
0

我不知道是否相关,但不要使用“OR”或“AND”运算符,因为它们与经典的“&&”或“||”具有不同的含义。cf http://php.net/manual/en/language.operators.logical.php

因此,首先,将“AND”替换为“&&”,将“OR”替换为“||”。

于 2012-08-21T01:09:17.317 回答