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 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘