"array"、"string" 类型的预期参数在 属性 路径 "roles" 处给出。在 Symfony 中
Expected argument of type "array", "string" given at property path "roles". in Symfony
我只是想通过默认向 symfony 中的字段 "Roles" 传递一个值来添加一个隐藏在表单中的字段。
我检查了多个教程,但我没有找到我要找的东西。
我把我如何保存字段 "roles" 放在我的数据库中,我把字段 "Roles" 是如何在我的实体中声明的,我还把我如何尝试通过隐藏发送数据表格。
这是我的 UsersEntity,我在其中保存 "roles"
/**
*
* @ORM\Column(name="roles", type="array", nullable=false)
*/
private $roles = [];
public function getRoles(): ?array
{
$roles = $this->roles;
$roles[] = 'ROLE_USER';
return array_unique($roles);
}
public function setRoles(array $roles): self
{
$this->roles = $roles;
return $this;
}
这是我的 RegistrationFormType
$builder
->add('email')
->add('username')
->add('lastName')
->add( 'firstName')
->add('address')
->add( 'phone')
->add( 'city')
->add('postalCode')
->add('roles', HiddenType::class, array(
'data' => 'ROLE_PARTICULAR'
));
This is the error
我不能传递数组,每次我传递给他一个字符串时他都会告诉我。我尝试了几种语法,我做不到,有人可以帮我吗?我是 Symfony 5 的新手
谢谢您的帮助。
为什么不直接在controller中设置role呢?
$user->setRoles(['ROLE_PARTICULAR']);
我只是想通过默认向 symfony 中的字段 "Roles" 传递一个值来添加一个隐藏在表单中的字段。 我检查了多个教程,但我没有找到我要找的东西。
我把我如何保存字段 "roles" 放在我的数据库中,我把字段 "Roles" 是如何在我的实体中声明的,我还把我如何尝试通过隐藏发送数据表格。
这是我的 UsersEntity,我在其中保存 "roles"
/**
*
* @ORM\Column(name="roles", type="array", nullable=false)
*/
private $roles = [];
public function getRoles(): ?array
{
$roles = $this->roles;
$roles[] = 'ROLE_USER';
return array_unique($roles);
}
public function setRoles(array $roles): self
{
$this->roles = $roles;
return $this;
}
这是我的 RegistrationFormType
$builder
->add('email')
->add('username')
->add('lastName')
->add( 'firstName')
->add('address')
->add( 'phone')
->add( 'city')
->add('postalCode')
->add('roles', HiddenType::class, array(
'data' => 'ROLE_PARTICULAR'
));
This is the error
我不能传递数组,每次我传递给他一个字符串时他都会告诉我。我尝试了几种语法,我做不到,有人可以帮我吗?我是 Symfony 5 的新手 谢谢您的帮助。
为什么不直接在controller中设置role呢?
$user->setRoles(['ROLE_PARTICULAR']);