我有以下内容:
<%= link_to "Exhibitions", :action => 'tabExhibitions', :id => @app.id, :remote => true %>
它生成:
<div class="tabbarButton" id="tabbarExhibitions">
<a href="/apps/3/tabExhibitions?remote=true">Exhibitions</a>
</div>
单击时会导致常见的GET请求。
我是Rails的新手,但我的理解是设置:remote => true
应该创建<a href="..." data-remote=true>
而不是普通链接。
我正在使用jQuery,必要的标头和元标签已经到位。我应该提到这个项目是从Rails 2.3.8升级的
感谢您的帮助。
答案 0 :(得分:10)
link_to
将:remote => true
放入参数列表的url
部分,并为其创建查询字符串参数(请参阅参数in the documentation)。基本上,你写的是:
<%= link_to "Exhibitions", { :action => 'tabExhibitions', :id => @app.id, :remote => true } %>
您希望为html_options
:
<%= link_to "Exhibitions", { :action => 'tabExhibitions', :id => @app.id }, :remote => true %>