How to set default value for form field in Symfony2?

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

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

22条回答
  •  [愿得一人]
    2020-11-27 13:41

    If that field is bound to an entity (is a property of that entity) you can just set a default value for it.

    An example:

    public function getMyField() {
        if (is_null($this->MyField)) {
            $this->setMyField('my default value');
        }
        return $this->MyField;
    }
    

提交回复
热议问题