Rails如何在link_to_remote中调用另一个控制器
如何使用 link_to_remote
:url => 调用不同控制器的操作{:控制器=> "帖子", :action => “更新”}不起作用
how to call a different controller's action using link_to_remote
:url => {:controller => "Posts", :action => "update"} doesn't work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
方法:
传入一个哈希值,如:
作为第二个参数(选项)。已验证。
结果:
您的实现问题可能是没有“真正的”update-url(除非您手动创建了一个)。请查看您的编辑表单的网址。它实际上是对“posts/:post_id”的后请求。
the method:
passing in a hash like:
as the second argument (options) works. verified.
the result:
The problem with your implementation might be, that there is no "real" update-url (except you created one by hand). Please have a look at the url of your edit-form. It's actually a post-request to "posts/:post_id".