2

我的控制器是:

  /**
   * @Route("/product/submit", name="product_submit") 
   * @Template("GaorenVendorsBundle:Product:index.html.twig")
   */
  public function submitAction()
  {
        $em = $this->getDoctrine()->getManager();
        $uid = $this->getUser()->getId();
        $em->getRepository( 'GaorenVendorsBundle:Product' )->updateStatus( $uid, Product::STATUS_FREE, Product::STATUS_PENDING );

        return $this->redirect( $this->generateUrl( 'product' ) );
  }

我的回购是:

class ProductRepository extends EntityRepository
{

  public function updateStatus($uid, $status, $setter)
  {
        $st = $this->getEntityManager()->getRepository( 'GaorenVendorsBundle:Product' )
              ->createQueryBuilder( 'p' )
              ->update( 'GaorenVendorsBundle:Product', 'p' )
              ->set( 'p.status', ':setter' )
              ->where( 'p.status= :status AND p.user= :user' )
              ->setParameters( array(
                      'user' => $uid,
                      'status' => $status,
                      'setter' => $setter
              ) )
              ->getQuery()
              ->execute()

        return $st;
  }

枝条:

    <a class="btn btn-large btn-primary " href="{{ path('product_submit') }}">
        <i class="icon-plus icon-white"></i>
        {{ 'create a new entry'|trans }}
    </a>

当请求“提交”操作时,它会提示我:

[Semantical Error] line 0, col 75 near 'submit': Error: 'submit' is not defined.

“提交”与Doctrine ORM查询无关,为什么会出现错误?

4

1 回答 1

3

可能是您有一条与/product/{id}上述类似的路线相匹配的路线吗?

这将匹配您的/product/submit路线并认为是$idstring "submit"。第一个匹配的路由在 Symfony 中获胜。然后,如果您尝试从此 id 检索 Product 对象,则可能会引发此类错误。

解决方案是将您的提交操作移到处理/product/{id}路由的操作之上。

于 2012-06-26T08:48:16.920 回答