开发者

how to use urlhelper to include rails 3 custom data- attribute

I am using Rails 3 and found that if I add :remote => :true, there will be added to the tag the data-remote = true attribute. But I can't find a way to add custom data- attributes to the urlhelper. The followings won't work:

<%= link_to projects_path, :history => "new"%>
<%= link_to projects_path, :data-history => "new"%> #this throws an error
<%= link_to projects_path, :data_history => "new"%>

What I want to generate开发者_开发问答 is: New Project

anyone?


What about:

<%= link_to 'New Project', new_project_path, 'data-history' => 'new' %> 

( http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-link_to )


This is an elegant solution:

<%= link_to "foo", foo_path, data: { foo: "bar" } %>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜