对于多语言表单,我使用Gedmo可翻译与A2lix结合使用personal translations,因此对于1个实体,我有1个翻译:Categ和CategTranslation。
要显示表单一切正常,但是当我提交时我发生了这个错误:
ContextErrorException:警告:缺少Immo \ AnnonceBundle \ Entity \ CritereCategTranslation :: __ construct()的参数1,在/ var / www / kimsufi / asimmobilier / vendor / a2lix / translation-form-bundle / A2lix / TranslationFormBundle / Form中调用第70行的/DataMapper/GedmoTranslationMapper.php,在/var/www/kimsufi/asimmobilier/src/Immo/AnnonceBundle/Entity/CritereCategTranslation.php第29行中定义
这是我的CategType:
->add('translations', 'a2lix_translations_gedmo', array(
'translatable_class' => 'Immo\AnnonceBundle\Entity\CritereCateg',
'locales' => array('fr', 'en'),
'required' => false,
'fields' => array(
'libelle' => array(
'field_type' => 'text',
'locale_options' => array(
'en' => array(
'label' => 'Libellé du critère (en) :',
'attr' => array('placeholder' => 'Example : Convenience, proximity, etc.')
),
'fr' => array(
'label' => 'Libellé du critère (fr) :',
'attr' => array('placeholder' => 'Exemple : A proximité, commodités, etc.')
)
)
)
)
)
);
我的CritereCategTranslation:
use Gedmo\Mapping\Annotation as Gedmo;
use Gedmo\Translatable\Entity\MappedSuperclass\AbstractPersonalTranslation;
/**
* @ORM\Entity
* @ORM\Table(name="criterecateg_translations",
* uniqueConstraints={@ORM\UniqueConstraint(name="lookup_unique_idx", columns={
* "locale", "object_id", "field"
* })}
* )
*/
class CritereCategTranslation extends AbstractPersonalTranslation
{
/**
* Convenient constructor
*
* @param string $locale
* @param string $field
* @param string $value
*/
public function __construct($locale, $field, $value)
{
$this->setLocale($locale);
$this->setField($field);
$this->setContent($value);
}
/**
* @ORM\ManyToOne(targetEntity="CritereCateg", inversedBy="translations")
* @ORM\JoinColumn(name="object_id", referencedColumnName="id", onDelete="CASCADE")
*/
protected $object;
}
有什么想法吗?感谢
答案 0 :(得分:1)
删除_construct方法。你不需要它。