我使用easyadmin,我希望字段“ role”在字段类型“ radio”中显示角色的选择,但是会发生这种类型的错误(数组到字符串的转换)(请参见下图):
Notice: Array to string conversion
这是我的配置:
easy_admin:
entities:
User:
class: AppBundle\Entity\User
form:
fields:
- { property: 'username' }
- { property: 'email' }
- { property: 'enabled' }
- property: 'plainPassword'
type: 'repeated'
type_options:
type: Symfony\Component\Form\Extension\Core\Type\PasswordType
required: false
first_options: { label: '%label.password%' }
second_options: { label: '%label.password_confirmation%' }
invalid_message: fos_user.password.mismatch
- property: 'roles'
type: 'choice'
type_options:
mapped: true
expanded: true
multiple: false
choices: { 'Conseiller': 'ROLE_USER', 'Administrateur': 'ROLE_ADMIN' }
有人会为我提供解决方案,以便我可以使用easyadmin显示单选按钮吗?
预先感谢
答案 0 :(得分:1)
这是Symfony 3.4中的一个解决方案(使用Yes / No下拉菜单),可能会有所帮助:
在config.yml中
imports:
...
- { resource: easyAdmin.yml }
在easyadmin.yml
中fields:
...
- property: 'hasRoleAdmin'
label: 'Is admin?'
type: choice
type_options:
choices:
'No': 'No'
'Yes': 'Yes'
在用户实体中:
public function hasRoleAdmin()
{
return ($this->hasRole('ROLE_ADMIN')) ? 'Yes' : 'No';
}
public function setHasRoleAdmin($isAdmin)
{
if ('Yes' === $isAdmin && 'No' === $this->hasRole('ROLE_ADMIN')) {
$this->addRole('ROLE_ADMIN');
}
if ('No' === $isAdmin && 'Yes' == $this->hasRole('ROLE_ADMIN')) {
$this->removeRole('ROLE_ADMIN');
}
$this->isAdmin = $isAdmin;
}
答案 1 :(得分:0)
@ johan-rm您所做的几乎是正确的。
实际上,您不能使用单选按钮作为角色,因为角色(请参见s
)是多选字段。您需要使用复选框(或多个选择)。
在您的代码中,唯一出错的部分是multiple: false
。
如果尝试将数组映射到单个选择字段,则尝试将数组映射到字符串,因此会出现错误。
只需将multiple: false
更改为multiple: true
。
这是结果:
easy_admin:
entities:
User:
class: AppBundle\Entity\User
form:
fields:
- { property: 'username' }
- { property: 'email' }
- { property: 'enabled' }
- property: 'plainPassword'
type: 'repeated'
type_options:
type: Symfony\Component\Form\Extension\Core\Type\PasswordType
required: false
first_options: { label: '%label.password%' }
second_options: { label: '%label.password_confirmation%' }
invalid_message: fos_user.password.mismatch
- property: 'roles'
type: 'choice'
type_options:
mapped: true
expanded: true
multiple: true
choices: { 'Conseiller': 'ROLE_USER', 'Administrateur': 'ROLE_ADMIN' }