douhuan1950 2014-08-19 14:55
浏览 59
已采纳

Symfony2 - 在表单类型中进行表单处理后重定向

I'm trying to figure out how to work with dynamic forms/form types in Symfony 2. I've managed so far, but what I don't know and can't find is how to redirect after the POST_SUBMIT event.

Do I do it inside the controller or does it happen directly in the form type class? What happens atm is the page reloads, but the data in the page is not updated. Plus I would like to redirect to another page.

Thanks in advance.

  • 写回答

1条回答 默认 最新

  • dosryjij88555 2014-08-19 15:01
    关注

    From the doc :

    if ($form->isValid()) {
        // perform some action, such as saving the task to the database
    
        return $this->redirect($this->generateUrl('task_success'));
    }
    

    the isValid() method will return true only when a POST request has been performed and when the data sent is valid.
    If you want to redirect after POST request even in the case the form is not valid, you can do this :

    public function newAction(Request $request)
    {
        // ...
        if ($request->isMethod('POST')) {
    
            if ($form->isValid()) {
                // perform some action...
            }
    
            return $this->redirect($this->generateUrl('page_after_post_request'));
        }
        // ...
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失