ruby-on-rails – redirect_to with params.如何将它们传递给我?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – redirect_to with params.如何将它们传递给我?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是铁杆新手.我在行动中使用了redirect_to和params,但现在我不知道如何在我的视图中显示这些参数?

解决方法

试试这个变种:

> redirect_to controller:’thing’,action:’edit’,id:3,something:’else’

> redirect_to thing_path(@ thing,foo:params [:foo])

此外,这link should be helpful for you.

原文链接:https://www.f2er.com/ruby/267799.html

猜你在找的Ruby相关文章