Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个表单域,这在我的项目中是正确的。
enter code here role: type: entity attributs: class: 'SystemUserBundle:Group' property: name expanded: false multiple: true
如何为此句柄添加默认值?
你必须让你data有一个默认值:
data
// User::getRole() = function { return new Role('DEFAULT'); } $object = new User; $form->setData($object);