【问题标题】:Problems trying to translate an entity Symfony2尝试翻译实体 Symfony2 的问题
【发布时间】:2014-04-15 01:31:15
【问题描述】:

我正在尝试使用 Gedmo Translatable 在 Symfony2 中设置一些可翻译的内容,但似乎我做错了什么或遗漏了什么。

我在 composer.json 文件中包含以下行:

"gedmo/doctrine-extensions": "2.3.*@dev"

另外,我在 config.yml 文件中添加了以下几行:

stof_doctrine_extensions:
    orm:
        alopatria:
            timestampable: true
            sluggable: true
            translatable: true

实体类是这样设置的:

<?php

namespace ...;

use Gedmo\Mapping\Annotation as Gedmo;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Translatable\Translatable;

/**
* ...\Entity
*
* @ORM\Table(name="content")
* @ORM\HasLifecycleCallbacks 
* @ORM\Entity(repositoryClass="...\Entity\ContentRepository")
*/
class Content implements Translatable
{
    /**
     *
     * @ORM\Column(name="id", type="bigint", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    protected $id;

    /**
     * @Gedmo\Translatable
     * @ORM\Column(name="title", type="string", length=32, nullable=false)
     */
    protected $title;

    /**
     * @Gedmo\Translatable
     * @ORM\Column(name="text", type="text", nullable=false)
     */
    protected $text;

    /**
     * @var datetime $created
     *
     * @Gedmo\Timestampable(on="create")
     * @ORM\Column(type="datetime")
     */
    private $created;

    /**
     * @var datetime $updated
     *
     * @Gedmo\Timestampable(on="update")
     * @ORM\Column(type="datetime")
     */
    private $updated;

    /**
     * @var datetime $contentChanged
     *
     * @ORM\Column(name="content_changed", type="datetime", nullable=true)
     * @Gedmo\Timestampable(on="change", field={"title", "text"})
     */
    private $contentChanged;

    /**
     * @Gedmo\Slug(fields={"title"})
     * @ORM\Column(length=128, unique=true)
     */
    private $slug;


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

    /**
     * Set title
     *
     * @param string $title
     * @return Content
     */
    public function setTitle($title)
    {
        $this->title = $title;

        return $this;
    }

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

    /**
     * Set text
     *
     * @param string $text
     * @return Content
     */
    public function setText($text)
    {
        $this->text = $text;

        return $this;
    }

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

    /**
     * Set created
     *
     * @param \DateTime $created
     * @return Content
     */
    public function setCreated($created)
    {
        $this->created = $created;

        return $this;
    }

    /**
     * Get created
     *
     * @return \DateTime 
     */
    public function getCreated()
    {
        return $this->created;
    }

    /**
     * Set updated
     *
     * @param \DateTime $updated
     * @return Content
     */
    public function setUpdated($updated)
    {
        $this->updated = $updated;

        return $this;
    }

    /**
     * Get updated
     *
     * @return \DateTime 
     */
    public function getUpdated()
    {
        return $this->updated;
    }

    /**
     * Set contentChanged
     *
     * @param \DateTime $contentChanged
     * @return Content
     */
    public function setContentChanged($contentChanged)
    {
        $this->contentChanged = $contentChanged;

        return $this;
    }

    /**
     * Get contentChanged
     *
     * @return \DateTime 
     */
    public function getContentChanged()
    {
        return $this->contentChanged;
    }

    /**
     * Set slug
     *
     * @param string $slug
     * @return Content
     */
    public function setSlug($slug)
    {
        $this->slug = $slug;

        return $this;
    }

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

当我尝试在控制器中创建可翻译内容时:

$content = new Content();
$content->setTitle('Content example');
$content->setText('Content example...');
$em = $this->getDoctrine()->getEntityManager();
$em->persist($content);
$em->flush();

$content->setTranslatableLocale('fr'); // change locale
$em->persist($content);
$em->flush();

这是错误:

The class 'Gedmo\Translatable\Entity\Translation' was not found in the chain configured namespaces ...\Entity, FOS\UserBundle\Model

有什么帮助吗?谢谢!!!

【问题讨论】:

  • 您在 app/config.yml 中缺少某些内容。看knplabs.com/blog/2012/02/07/…
  • 我会检查这个网址...
  • 这个博客似乎是为 symfony-2.2 写的,对于 2.3 版本它不起作用。继续努力让它发挥作用。

标签: symfony symfony-2.3


【解决方案1】:

您还需要配置要使用的可翻译实体。在 config.yml 中:

orm:
auto_generate_proxy_classes: %kernel.debug%
mappings:
    translatable:
        type: annotation
        is_bundle: false
        prefix: Gedmo\Translatable\Entity
        dir: "%kernel.root_dir%/../vendor/gedmo/doctrine-extensions/lib/Gedmo/Translatable/Entity"
        alias: GedmoTranslatable

【讨论】:

    猜你喜欢
    • 2015-03-09
    • 2012-07-09
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多