"Cache key "App:Category__CLASSMETADATA__”包含保留字符“{}()/\@:”。

"Cache key "App:Category__CLASSMETADATA__" contains reserved characters "{}()/\@:"."

我收到这个错误,我想是在尝试访问任何实体存储库时遇到的。

An exception has been thrown during the rendering of a template ("Cache key "App:Category__CLASSMETADATA__" contains reserved characters "{}()/@:".").

我在代码上次运行时加载了提交并重新加载,但我仍然收到此错误。

我试图在以前的帖子中找到答案,但那些对我不起作用,因为例如我在代码中的任何地方都没有@Assert。

我尝试浏览 composer.json 文件并将所有库更新到最新版本,然后删除 vendor 文件夹和 composer 更新,因为这对某些人有用。但它对我没有用。

我正在使用 Symfony 5.4 和 PHP 8.0。

Category.php

    <?php

namespace App\Entity;

use App\Repository\CategoryRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;

#[ORM\Entity(repositoryClass: CategoryRepository::class)]
class Category
{
    #[ORM\Id]
    #[ORM\GeneratedValue]
    #[ORM\Column(type: 'integer')]
    private $id;

    #[ORM\Column(type: 'string', length: 255)]
    private $name;

    #[ORM\OneToMany(mappedBy: 'category', targetEntity: Product::class, orphanRemoval: true)]
    private $products;

    public function __construct()
    {
        $this->products = new ArrayCollection();
    }

    public function getId(): ?int
    {
        return $this->id;
    }

    public function getName(): ?string
    {
        return $this->name;
    }

    public function setName(string $name): self
    {
        $this->name = $name;

        return $this;
    }

    /**
     * @return Collection<int, Product>
     */
    public function getProducts(): Collection
    {
        return $this->products;
    }

    public function addProduct(Product $product): self
    {
        if (!$this->products->contains($product)) {
            $this->products[] = $product;
            $product->setCategory($this);
        }

        return $this;
    }

    public function removeProduct(Product $product): self
    {
        if ($this->products->removeElement($product)) {
            // set the owning side to null (unless already changed)
            if ($product->getCategory() === $this) {
                $product->setCategory(null);
            }
        }

        return $this;
    }
}

我很乐意分享您认为可能有用的任何信息。

非常感谢您。

编辑:我刚刚将提交下载到另一个文件夹并重新运行所有内容,但仍然收到相同的错误消息。

尝试在调用控制器、表单和存储库时将“App:Category”替换为“App\Entity\Category”。

我们遇到了同样的问题,替换对我们有用。