Rails 3 - 如何使用 :remote => 在 image_tag 上应用 link_to真实属性

发布于 2024-11-28 04:50:24 字数 457 浏览 0 评论 0原文

我正在努力解决有关正确设置图像参数(即链接)的问题。具体来说,

这有效,

<%= 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 技术交流群。

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

发布评论

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

评论(1

时间你老了 2024-12-05 04:50:24

你可以试试这个。 (我自己没有测试过)

<%= 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) %>

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