<%= link_to event do %> #bunch of stuff making up the partial. <% end %>
所以我试图为部分中的每个项目分配一个ID和一个类.我已经看到你必须调用完整的link_to函数,如<%= link_to event,{controller :: controller,action :: action},{class:'someClass',id:'someId'}%>.
那对我来说不起作用,因为这样做会阻止我吗?想法?
解决方法
这对你有用吗?
<%= link_to event,id: "an-id",class: "some-class" do %> #bunch of stuff making up the partial. <% end %>