Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个编辑购物车表单,我想在提交按钮(调用“更新”)之前调用另一个操作(使用 button_to 或 link_to)。在 RoR 中是否可行?先感谢您 !
是的,rails 可以。尝试:
<%= link_to "Update", update_carts_path(@path.id) %>
例如,但是。如果您在编辑该图表时更新了此更新。那submit button已经处理好了。在 Rails 上提交可以假定为智能按钮操作,它将根据您的操作自动更改,postforcreate和putforupdate
submit button
post
create
put
update
rake routes仅供参考,您可以在终端上检查您的路径列表。
rake routes
抱歉描述混乱,新手。