我正在尝试在 Rails 应用程序中使用 Ajax 更新我的 index.html.erb 文件中的 div,但在这一点上,由于缺乏良好的解释性教程,我完全感到困惑和沮丧(据我所知) ) 在网上。
我目前有一个 index.html.erb 文件,其中包括以下块:
<table border="1">
<% @dbs.each do |db| %>
<tr>
<td ><%= link_to db, :action => :show, :db => db, :remote => true %></td>
</tr>
<% end %>
</table>
<div id="collections">
</div>
我的索引控制器只是在那里初始化@dbs var,就是这样,它没有任何respond_to块。我想更新#collections div,但我很难理解如何去做?
更新 - 控制器类: