Rails 3 - 如何使用 :remote => 在 image_tag 上应用 link_to真实属性
我正在努力解决有关正确设置图像参数(即链接)的问题。具体来说,
这有效,
<%= link_to (image_tag 'img name',
:class => 'css'),
({controller, action, parameter})%>
但已经行不通了,
<%= link_to (image_tag 'img name',
:class => 'css'),
({controller, action, parameter},
{:remote => true})
%>
也许你会认为这是一个非常低的问题,但我试图解决它半个多小时,但仍然一无所获......所以我将感谢每一个帮助。
I am struggling with problem about right setting parameters for image, that is link. Concrete,
this works
<%= link_to (image_tag 'img name',
:class => 'css'),
({controller, action, parameter})%>
this already not works
<%= link_to (image_tag 'img name',
:class => 'css'),
({controller, action, parameter},
{:remote => true})
%>
May you will think it's very low question, but I am trying to solve it more than half hour and still nothing... so I will appreciate for each of help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以试试这个。 (我自己没有测试过)
<%= link_to(image_tag('img name', :class => 'css'), url_for(:controller => 'controller_name', :action => 'action_name' ), :remote => true) %>
You can try this. (not tested myself)
<%= link_to(image_tag('img name', :class => 'css'), url_for(:controller => 'controller_name', :action => 'action_name'), :remote => true) %>