问题:form_for 以及在 www.domain.com/rails 上使用 Rails 应用程序
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
:url
键设置为controller
:这会将生成的
form
标记的action
设置为相对路径“控制器
”。Set the
:url
key tocontroller
:This will set the
action
of the generatedform
tag to the relative path "controller
".