使用 ruby 在 rhodes 移动应用程序框架中从一个控制器重定向到另一个控制器
我喜欢把这个分享给刚接触罗德框架的程序员。我在从一个控制器重定向到另一个控制器时遇到一个问题。我第一次尝试下面的代码。
重定向到:控制器=> :User, :action=>:new
但不适合我。我得到了以下解决方案,并且效果很好。
url_for:控制器=> :用户,:动作=>:新
谢谢, 迪利普·保罗
i like share this to programmers who are new in rhodes frame work. I got one problem in redirecting from one controller to another. First time i tried below code.
redirect_to :controller => :User, :action=>:new
But wasn't working for me. I got below soln for that and it works fine.
url_for :controller => :User, :action=>:new
Thanks,
Dileep Paul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在罗德岛,正确的语法是
redirect
,而不是redirect_to
。 (参考:http://docs.rhomobile.com/rhodes/rhom#associations)您也不需要使用
url_for
构造。In Rhodes, the proper syntax is
redirect
, notredirect_to
. (reference: http://docs.rhomobile.com/rhodes/rhom#associations)You also do not need to utilize the
url_for
construct.