3

我正在使用 Symfony 2.1 制作客户案例管理系统,我偶然发现了这个我无法解决的奇怪问题。出于某种原因,当我使用 执行 showAction 时CustomerCaseController,出现以下错误:

“类 HSW\AshaBundle\Entity\UserInterface 不存在”
500 内部服务器错误

我不知道应用程序的哪个部分需要该接口。如果我创建一个空UserInterface.php类,问题就会消失,一切正常。为什么showAction需要UserInterface

我已将问题范围缩小到与 showController 中的这段代码有关:

$customercase = $this->getDoctrine() ->getRepository('HSWAshaBundle:CustomerCase') ->find($id);

我有以下实体:

  • User(用于登录和提交案例)
  • Customer(对于客户)
  • CustomerCase(案例)。

与和实体CustomerCase具有多对一关系,方式如下:CustomerUser

// src/HSW/AshaBundle/Entity/CustomerCase.php 命名空间 HSW\AshaBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
use Doctrine\Common\Collections\ArrayCollection;

/**
 * CustomerCase
 *
 * @ORM\Table(name="hsw_customerCase")
 * @ORM\Entity
 * @Gedmo\Loggable
 * @Gedmo\SoftDeleteable(fieldName="deletedAt")
 */
class CustomerCase
{

/** 
 * @ORM\ManyToOne(targetEntity="Customer", inversedBy="customerCases") 
 * @ORM\JoinColumn(name="customer_id", referencedColumnName="id", nullable=false) 
 */
protected $customer;

/** 
 * @ORM\ManyToOne(targetEntity="User", inversedBy="createdCustomerCases") 
 * @ORM\JoinColumn(name="creator_id", referencedColumnName="id", nullable=false) 
 */
protected $creator;

/** 
 * @ORM\ManyToOne(targetEntity="User", inversedBy="holdingCustomerCases") 
 * @ORM\JoinColumn(name="holder_id", referencedColumnName="id", nullable=false) 
 */
protected $holder;
.....etc....

// src/HSW/AshaBundle/Entity/CustomerCase.php 命名空间 HSW\AshaBundle\Entity;

use Symfony\Component\Security\Core\User\EquatableInterface;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Security\Core\User\AdvancedUserInterface;
use Doctrine\Common\Collections\ArrayCollection;

/**
 * HSW\AshaBundle\Entity\User
 *
 * @ORM\Table(name="hsw_users")
 * @ORM\Entity(repositoryClass="HSW\AshaBundle\Entity\UserRepository")
 */

class User implements AdvancedUserInterface
{
.....etc....

与用户实体的关系会以某种方式影响这一点吗?CustomerCase.php这是我在and之间看到的唯一可见的区别Customer.phpshowAction没有 的情况下有效UserInterface)。

有人可以帮我调试这种行为吗?UserInterface仅仅因为 Symfony 需要 is(出于未知原因),所以拥有一个空类似乎真的没用。

4

1 回答 1

0

我猜你没有将UserInterface的命名空间导入你的用户类(我猜它是一个 User 类,因为你没有提到它):

use Symfony\Component\Security\Core\User\UserInterface;

class User implements UserInterface
{
}

阅读官方文档中的 PHP 命名空间

于 2012-12-14T14:07:29.583 回答