How to set default value for form field in Symfony2?

后端 未结 22 1692
暖寄归人
暖寄归人 2020-11-27 13:23

Is there an easy way to set a default value for text form field?

22条回答
  •  隐瞒了意图╮
    2020-11-27 13:51

    You can set the default for related field in your model class (in mapping definition or set the value yourself).

    Furthermore, FormBuilder gives you a chance to set initial values with setData() method. Form builder is passed to the createForm() method of your form class.

    Also, check this link: http://symfony.com/doc/current/book/forms.html#using-a-form-without-a-class

提交回复
热议问题