我有这张桌子
Tasks -- id , name
usertasks -- id, task_id , note
Class user {
private $ usertasks
}
我的 usertask 表单是这样的
public function buildForm(FormBuilder $builder, array $options)
{
$builder
->add('note')
;
}
表格显示正常。
有什么方法可以在note
文本字段之前有任务名称的标签
就像是
$builder
->add('usertask.getName(id)) as Label not editable
->add('note')
;