0

我正在使用 symfony 5.2 和 Easyadmin 3。当时我尝试在 easyadmin 中使用 A2Lix 包实现翻译,但出现如下错误:

“translations”字段的Doctrine类型为“4”,EasyAdmin尚不支持。

在添加时检查了 Symfony EasyAdmin 3.x ManyToMany 错误:...字段的 Doctrine 类型为“4”,EasyAdmin 尚不支持

但这种情况不同,因为我在 easyadmin 中实现翻译。

谁能帮我?如何解决它。

4

1 回答 1

1

最后我找到了解决这个问题的方法。

我从以下链接找到了解决方案:

https://github.com/EasyCorp/EasyAdminBundle/issues/1621

创建了一个翻译字段:

namespace App\Admin\Field;

use A2lix\TranslationFormBundle\Form\Type\TranslationsType;
use EasyCorp\Bundle\EasyAdminBundle\Contracts\Field\FieldInterface;
use EasyCorp\Bundle\EasyAdminBundle\Field\FieldTrait;

final class TranslationField implements FieldInterface
{
    use FieldTrait;

    public static function new(string $propertyName, ?string $label = null, $fieldsConfig = []): self
    {
        return (new self())
            ->setProperty($propertyName)
            ->setLabel($label)
            ->setFormType(TranslationsType::class)
            ->setFormTypeOptions(
                [
                    'default_locale' => '%locale%',
                    'fields' => $fieldsConfig,
                ]
            );
    }
}

在 crud 控制器中创建字段实现后:

public function configureFields(string $pageName): iterable
    {
        $fieldsConfig = [
            'subject' => [
                'field_type' => TextareaType::class,
                'required' => true,
                'label' => 'Тема',
            ],
            'text' => [
                'field_type' => CKEditorType::class,
                'required' => true,
                'label' => 'Текст',
            ],
        ];

        return [
            TranslationField::new('translations', 'Переводы', $fieldsConfig)
                ->setRequired(true)
                ->hideOnIndex(),
            TextField::new('subject')->hideOnForm()->setLabel('Тема'),
            BooleanField::new('isActive')->setLabel('Активность'),
        ];
    }

此代码将节省面临此类问题的任何人的时间。

于 2021-01-27T14:09:32.067 回答