Submitting multiple forms in Rails

前端 未结 1 633
既然无缘
既然无缘 2021-01-21 15:53

I have to submit multiple forms, I followed the advice of this post: How to submit multiple, duplicate forms from same page in Rails - preferably with one button

Note I\

1条回答
  •  无人及你
    2021-01-21 16:08

    You are not checking if @registration.save actually saves the record. It can return true or false. I guess it just silently fails.

    If you use @registration.save!, it wile raise an exception when anything goes wrong. I guess there is some kind of validation error there.

    0 讨论(0)
提交回复
热议问题