使用 ruby​​ 在 rhodes 移动应用程序框架中从一个控制器重定向到另一个控制器

发布于 2024-10-09 16:15:21 字数 206 浏览 4 评论 0原文

我喜欢把这个分享给刚接触罗德框架的程序员。我在从一个控制器重定向到另一个控制器时遇到一个问题。我第一次尝试下面的代码。

重定向到:控制器=> :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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魂归处 2024-10-16 16:15:21

在罗德岛,正确的语法是redirect,而不是redirect_to。 (参考:http://docs.rhomobile.com/rhodes/rhom#associations

您也不需要使用 url_for 构造。

def create
     @product = Product.new(@params['product'])
     @product.save

     redirect :controller => :Customer, :action => :index
end

In Rhodes, the proper syntax is redirect, not redirect_to. (reference: http://docs.rhomobile.com/rhodes/rhom#associations)

You also do not need to utilize the url_for construct.

def create
     @product = Product.new(@params['product'])
     @product.save

     redirect :controller => :Customer, :action => :index
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文