symfony 2 fosuserbundle profiledit

时间:2016-02-01 10:18:14

标签: symfony fosuserbundle

有人可以告诉我在FosuserBundle中编辑某些字段的最佳方法。我有我的用户的个人资料表格,我想要一些禁用的字段,因为我不希望用户修改此字段,但我想向他显示信息。如果我提交表单,我会有错误。

此字段不能为空

如何在FosUserBundle中仅编辑某些字段,而我的实体没有验证约束错误?

1 个答案:

答案 0 :(得分:0)

您需要在您的用户实体的字段中添加nullable = true:

示例:

/**
 * @var String
 * @ORM\Column(name="user_first_name", type="string", length=255, nullable=true)
 */
protected $userFirstName;