0

我一直在尝试为 Zend Framework 2 中的专辑模块添加更多灵活性。在此过程中,我一直在尝试为表单字段之一设置验证器,尤其是专辑名称,在我的情况下,我的数据库中的列名是标题。

我一直在关注我帖子先前答案之一的验证部分,可以在这里找到

我一直在以这种方式在我的专辑控制器类中使用该类:

<?php

namespace Album\Controller;

use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
use Album\Entity\Album\Album;
use Album\Form\AlbumForm;
use Album\Model\Album\AlbumExists;
use Doctrine\ORM\EntityManager;

class AlbumController
extends AbstractActionController
{
 public function addAction()
     {
        $form = new AlbumForm();
        $form->get('submit')->setAttribute('value', 'Add');

        $query = "SELECT a.title FROM Album\Entity\Album\Album a";
        $albumExists = new AlbumExists($this->getEntityManager(), $query, 'title');

        $request = $this->getRequest();
        if ($request->isPost())
        {
            $album = new Album();
            $form->setInputFilter($album->getInputFilter());
            $form->setData($request->getPost());
            $title = $this->getRequest()->getPost('title');

            if ($form->isValid() && $albumExists->isValid($title))
            {
                 $album->populate($form->getData());
                 $this->getEntityManager()->persist($album);
                 $this->getEntityManager()->flush();

                return $this->redirect()->toRoute('album');
            }
        }
        return array('form' => $form);
    }

当我输入已经在数据库中的专辑名称/标题时,它会以这种方式引发错误:

An error occurred during execution; please try again later.  
Additional information:
Doctrine\ORM\Query\QueryException  

File:
C:\vendor\doctrine\orm\lib\Doctrine\ORM\Query\QueryException.php:69

Message:
Invalid parameter number: number of bound variables does not match number of tokens.

知道我在哪里犯了错误吗?

4

1 回答 1

0

如果您使用的是“我的”类并且没有修改该部分,则您的查询中缺少 WHERE 条件。

在类中,:value绑定了一个参数,因此您必须在查询中使用此参数(例如WHERE a.title = :value)。

于 2012-09-11T12:00:32.810 回答