respond_with redirect with notice flash message not working

前端 未结 3 1589
栀梦
栀梦 2021-01-14 09:21

I am using rails 3.0.7. In the controller I have:

  def create
    @subscription = Subscription\\
      .new_from_nested_attributes_parameters(params[:subscr         


        
3条回答
  •  北荒
    北荒 (楼主)
    2021-01-14 09:46

    You can skip the show page:

    Instead of:

    respond_with @subscription
    

    Put:

    respond_with @subscription, edit_subscription_path(@subscription)
    

提交回复
热议问题