在我的 Rails erb 中,如何用 link_to 替换 ajax button_to ?
我有以下按钮:
<%= button_to '添加到购物车', line_items_path(:product_id => 产品), :远程=>正确%>
我想用包含带有文本的图像的 link_to 替换它。
我对 HTML CSS 部分没问题,但我希望请求针对 line_items#create 而不是 line_items#index
我该怎么做?
I have the following button :
<%= button_to 'Add to Cart', line_items_path(:product_id => product),
:remote => true %>
I want to replace it by a link_to containing an image with text on it.
I am ok with the HTML CSS part, but i want the request to be for line_items#create not for line_items#index
How can i do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
不要忘记也更新routes.rb,例如:
Try this:
And don't forget to update routes.rb too, e.g.:
经过一番尝试和错误后,我发现:
它工作得很好!
After a bit of try and error i found that :
It works perfectly fine!