8

我有这段代码通过'link_to'函数生成一个“取消关注”按钮:

<%= link_to "Non seguire più", user_user_relationship_path(id:@relationship.id), remote: true, id: "follow_#{@user.id}", class:"btn btn-small btn-danger", method: :delete %>

我想知道如何将“do..end”语法与所有这些参数一起使用。谢谢!

4

1 回答 1

19

您只需跳过第一个参数,可以将其余参数包装在括号中,然后添加 do/end。

<%= link_to(user_user_relationship_path(id:@relationship.id), remote: true, id: "follow_#{@user.id}", class:"btn btn-small btn-danger", method: :delete) do %>
  <!-- your button html here -->
<% end %>
于 2012-08-29T22:35:32.713 回答