问题:form_for 以及在 www.domain.com/rails 上使用 Rails 应用程序

发布于 2024-10-07 02:48:50 字数 181 浏览 3 评论 0原文

我有一个 Rails 应用程序,可以在 www.mydomain.com/rails/ 上访问 一切似乎都正常,除了 form_for helper 生成一个带有 action="/controller" 的表单标签,而不是 action="/rails/controller" 。

我该如何解决这个问题?

谢谢 !

I have a rails application which is accessible on www.mydomain.com/rails/
Everything seems to be working, except form_for helper which genererates a form tag with action="/controller", instead of action="/rails/controller".

How could I solve that ?

Thank you !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

总以为 2024-10-14 02:48:50

:url 键设置为 controller

form_for(object, :url => 'controller') 

这会将生成的 form 标记的 action 设置为相对路径“控制器”。

Set the :url key to controller:

form_for(object, :url => 'controller') 

This will set the action of the generated form tag to the relative path "controller".

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