Easy Admin 不显示关系

Easy Admin does not show the relationships

我也是因为同样的原因卡在了这一步!!但是我在这个 link

中找到了解决方案

总而言之,在 Admin/CommentCrudController.php,您应该添加:

use EasyCorp\Bundle\EasyAdminBundle\Field\FormField;
use EasyCorp\Bundle\EasyAdminBundle\Field\TextEditorField;

并像这样覆盖函数 configureFields:

public function configureFields(string $pageName): iterable
{
    return [
        FormField::addPanel('Conference'),
        AssociationField::new('conference')
            ->setRequired(true)
            ->setHelp('help text'),
        FormField::addPanel('Comment'),
        TextField::new('author')
            ->setHelp('Your name'),
        TextEditorField::new('text', 'Comment')
            ->setHelp('help text'),
        EmailField::new('email', 'Email Address')
            ->setHelp('Your valid email address'),
        DateTimeField::new('createdAt'),
        TextField::new('photoFilename')
    ];

}

现在,它对我来说应该可以正常工作了:-)