我无法按照我想要的方式获取链接。目前,我有以下代码:
<%= link_to :action => 'toggle' , :id => item.id, :remote => true do %>
<i class="icon icon-test"></i><b>Toggle</b>
<%end%>
这将产生我想要的链接,但包含&remote=true
在链接路径中,而不是实际使链接 ajaxy。尝试将参数包装在括号或花括号中,例如
<%= link_to {:action => 'toggle', :remote => true }, :id => item.id do %> ...
给我这样的错误
语法错误,意外的 tASSOC,需要 '}'
我想我想调用此处列出的第三个签名,但我似乎无法正确使用语法。