我正在尝试将我的link_to
标签转换为link_to do
块,如此处所述。我不确定 :remote=>true 选项应该放在哪里。
原来的:
<%= link_to "Title", {:controller => "users", :action => "edit", :id => u.id }, :remote => true %>
到目前为止,这适用于该link_to do
块,但我不知道在哪里放置:remote=>true。它在选项块或 html_options 中都不起作用。
<%= link_to (options = {:controller => "users", :action => "edit", :id => u.id}) do %>
Link contents
<% end %>