0

我正在尝试在 EasyAdmin 详细信息页面上显示一个 json 数组。我在这里读到有没有办法在 EasyAdmin 3 中表示 JSON 字段?你可以在 EasyAdmin 3 中使用 ArrayField 来显示一个 json 数组,这对我来说很有意义,因为这是 EasyAdmin 中唯一可以显示它的字段,所以我像这样添加它:

public function configureFields(string $pageName): iterable
{
    return [
        ArrayField::new('status', $this->translator->trans('form.label.status'))->onlyOnDetail(),
    ];
}

但它给了我这个错误: An exception has been thrown during the rendering of a template ("Notice: Array to string conversion").我需要添加其他东西还是它根本不起作用?

4

0 回答 0