I'm trying to convert my link_to
tag to a link_to do
block, as discussed here. I'm not sure where the :remote=>true option should go.
Original:
<%= link_to "Title", {:controller => "users", :action => "edit", :id => u.id }, :remote => true %>
これまでのところ、これはlink_to do
ブロックに対して機能していますが、:remote=>true をどこに置くべきかわかりません。options ブロックでも html_options でも機能しません。
<%= link_to (options = {:controller => "users", :action => "edit", :id => u.id}) do %>
Link contents
<% end %>