Trying to make a contact form example with symfony2

前端 未结 4 698
南笙
南笙 2021-02-10 10:27

Here I\'m trying to fill in a contact form then send it. However when I fill in the form and click on send I have this exception :

UndefinedMethodException: Atte         


        
4条回答
  •  南笙
    南笙 (楼主)
    2021-02-10 11:26

    You should replace

    $this->form->bindRequest($this->request);
    

    with

    $this->form->bind($this->request);
    

    as bindRequest() has been deprecated.

提交回复
热议问题