Symfony2和Entity字段:给出“Doctrine \ ORM \ QueryBuilder”类型的预期参数,给出“NULL”

时间:2013-05-23 09:59:29

标签: php symfony doctrine

我的课程Symfony2出了问题。

我在这里有3个班级“Niveau,Classe和Serie”。类与级别相关,与系列级别相关,并与多个类联系。这是源代码

/**
 * KS\SchoolBundle\Entity\Niveau
 *
 * @ORM\Table()
 * @ORM\Entity(repositoryClass="KS\SchoolBundle\Entity\NiveauRepository")
 */ 
class Niveau
{
/**
 * @var integer $id
 *
 * @ORM\Column(name="id", type="integer")
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="AUTO")
 */
private $id;

/**
 * @var string $niveau
 *
 * @ORM\Column(name="niveau", type="string", length=255)
 */
private $niveau;

/**
 * @var string $code
 * 
 * @ORM\Column(name="code", type="string", length=255)
 */
private $code;

/**
 * Get id
 *
 * @return integer 
 */
public function getId()
{
    return $this->id;
}

/**
 * Set niveau
 *
 * @param string $niveau
 * @return Niveau
 */
public function setNiveau($niveau)
{
    $this->niveau = $niveau;

    return $this;
}

/**
 * Get niveau
 *
 * @return string 
 */
public function getNiveau()
{
    return $this->niveau;
}

/**
 * Set code
 *
 * @param string $code
 * @return Niveau
 */
public function setCode($code)
{
    $this->code = $code;

    return $this;
}

/**
 * Get code
 *
 * @return string 
 */
public function getCode()
{
    return $this->code;
}

}

/**
 * KS\SchoolBundle\Entity\Serie
 *
 * @ORM\Table()
 * @ORM\Entity(repositoryClass="KS\SchoolBundle\Entity\SerieRepository")
 */
class Serie
{
/**
 * @var integer $id
 *
 * @ORM\Column(name="id", type="integer")
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="AUTO")
 */
private $id;

/**
 * @var string $serie
 *
 * @ORM\Column(name="serie", type="string", length=255)
 */
private $serie;


/**
 * Get id
 *
 * @return integer 
 */
public function getId()
{
    return $this->id;
}

/**
 * Set name
 *
 * @param string $serie
 * @return Serie
 */
public function setSerie($serie)
{
    $this->serie = $serie;

    return $this;
}

/**
 * Get name
 *
 * @return string 
 */
public function getSerie()
{
    return $this->seriee;
}

}

/**
 * KS\SchoolBundle\Entity\Classe
 *
 * @ORM\Table()
 * @ORM\Entity(repositoryClass="KS\SchoolBundle\Entity\ClasseRepository")
 */
class Classe
{
/**
 * @var integer $id
 *
 * @ORM\Column(name="id", type="integer")
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="AUTO")
 */
private $id;


/**
 *
 * @var type integer
 * 
 * @ORM\ManyToOne(targetEntity="KS\SchoolBundle\Entity\Niveau")
 * @ORM\JoinColumn(nullable=false)
 */
private $niveau;


/**
 *
 * @var type integer
 * 
 * @ORM\ManyToOne(targetEntity="KS\SchoolBundle\Entity\Serie")
 * @ORM\JoinColumn
 */
private $serie;


/**
 *
 * @var type string
 * 
 * @ORM\ManyToOne(targetEntity="KS\SchoolBundle\Entity\Section", inversedBy="classes")
 * @ORM\JoinColumn(nullable=false)
 */
private $section;




/**
 * Get id
 *
 * @return integer 
 */ 
public function getId()
{
    return $this->id;
}

/**
 * Set niveau
 *
 * @param KS\School\Entity\Niveau $niveau
 * @return Classe
 */
public function setNiveau(\KS\School\Entity\Niveau $niveau)
{
    $this->niveau = $niveau;

    return $this;
}

/**
 * Get niveau
 *
 * @return KS\School\Entity\Niveau 
 */
public function getNiveau()
{
    return $this->niveau;
}

/**
 * Set serie
 *
 * @param KS\School\Entity\Serie $serie
 * @return Classe
 */
public function setSerie(\KS\School\Entity\Serie $serie)
{
    $this->serie = $serie;

    return $this;
}

/**
 * Get serie
 *
 * @return KS\School\Entity\Serie 
 */
public function getSerie()
{
    return $this->serie;
}

/**
 * Set section
 *
 * @param KS\School\Entity\Section $section
 * @return Classe
 */
public function setSection(\KS\School\Entity\Section $section)
{
    $this->section = $section;

    return $this;
}

/**
 * Get section
 *
 * @return KS\School\Entity\Section 
 */
public function getSection()
{
    return $this->section;
}


public function __toString() {
    return $this->getNiveau() . ' ' . $this->getSerie();
}

}

我的问题是,我希望显示一个字段中的实体,该下拉列表具有作为代码级别和系列I系列的串联的值,其程序如下

->add('class', 'entity', array(
                    'class' => 'KSSchoolBundle:Classe',
                    'property' => 'value',
                    'query_builder' => function (\KS\SchoolBundle\Entity\ClasseRepository $er) {
                            $results =  $er->findAllClassesByCodeAndSerie();

                            $data = array();
                            foreach ($results as $result) {
                                $data[] = array(
                                    'id' => $result['id'],
                                    'value' => $result['code'] . ' ' . is_null($result['serie']) ? '' : $result['serie'],
                                );
                            }

                            return $data;
                        },
                )
        )

但从那以后什么都没有。 query_builder返回$ data,就像你看到一个数组一样。 id必须是选项标记值的值,值应该是用户必须看到的值,但我不知道如何执行此操作。浏览器提供此错误类型为“Doctrine \ ORM \ QueryBuilder”的预期参数,“array”给出

我想知道这是否可以在 __ toString()的Class类中做到这一点,从而返回类似 getNiveau()的内容。 getCode()。 ''。 getSerie()。 getSerie()

请一方面,我在这张表格上待了两天。

1 个答案:

答案 0 :(得分:1)

对于名为“class”的实体字段类型,在options数组中返回一个数组而不是QueryBuilder实例。

错误的部分就是这个:

'query_builder' => function (\KS\SchoolBundle\Entity\ClasseRepository $er) {

    // this is wrong as it does not return a Query but your Class entities themself ...
    // findByCodeAndSerie would normally receive 2 arguments: $code & $serie
    // but anyway ... this does not belong here !
    $results =  $er->findAllClassesByCodeAndSerie(); 

    // ... weird stuff

    $data = array(); 

        // ... more weird stuff

    return $data;    /// you return an array instead of QueryBuilder

正确的实现将是这样的:

use KS\SchoolBundle\Entity\ClasseRepository;

// ...
    // 'property' => 'value',       // remove this !!
    'query_builder' => function(ClasseRepository $er) {
        return $er->createQueryBuilder('c')
            ->orderBy('c.code', 'ASC');
    },      

现在只需将__toString()方法添加到您的Class实体。这将是实体的呈现标签:

public function __toString()
{
    return $this->niveau . $this->code . ' ' . $this->serie . $this->serie;
}

阅读enitity field type reference以获取更多信息和示例。