Rails 形式不再起作用

发布于 2024-12-15 09:59:12 字数 568 浏览 1 评论 0原文

此用于更新工作项的表单不再起作用。

使用此命令在 erb 文件中生成表单:

<%= form_for(@work_item, :url => admin_workitem_update_path) do |f| %>

生成的标记如下所示:

<form accept-charset="UTF-8" action="/admin/workitem/define/14" class="edit_workitem" enctype="multipart/form-data" id="edit_workitem_14" method="put">
</form>

路线如下所示:

admin_workitem_update PUT    /admin/workitem/define/:workitem_id(.:format)

后续: using :method => :post 在表单标签中有效。

为什么rails会生成put方法属性?

This form to update a work item does not work anymore.

The form is generated in the erb file using a this command:

<%= form_for(@work_item, :url => admin_workitem_update_path) do |f| %>

The generated tag looks like this:

<form accept-charset="UTF-8" action="/admin/workitem/define/14" class="edit_workitem" enctype="multipart/form-data" id="edit_workitem_14" method="put">
</form>

The route looks like this:

admin_workitem_update PUT    /admin/workitem/define/:workitem_id(.:format)

Follow-up: using :method => :post in the form tag works.

Why does rails generate the put method attribute?

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

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

发布评论

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

评论(1

丿*梦醉红颜 2024-12-22 09:59:12

切勿在表格前使用等号。我对 Instant Rails 实施也有同样的问题。 Rails 文档教程应该在不使用 <&=

<%= form_for(@work_item, :url => admin_workitem_update_path) do |f| %>

的情况下使用:

<% form_for(@work_item, :url => admin_workitem_update_path) do |f| %>

这就是全部

NEVER use equal sign befor form. I have the same problem with Instant Rails implementation. The tutorial on rails documentation should be used without <&=

<%= form_for(@work_item, :url => admin_workitem_update_path) do |f| %>

use insteand:

<% form_for(@work_item, :url => admin_workitem_update_path) do |f| %>

this is all

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