问题:Ajax 没有表现出应有的样子。
邮政索引:
<tr>
<td><%= post.name %></td>
<td><%= post.created_at.strftime("%Y/%m/%d, %I:%M%p") %></td>
<td><%= post.view %></td>
<td id="post_like_<%= post.id %>"><%= post.like %></td>
<td><%= link_to 'like', like_post_path(post), :remote => true %></td>
</tr>
像.js.erb:
$("#post_like_<%= post.id %>").html("<%= @post.like %>");
只有在刷新页面后才能看到更改。Ajax 无法正常工作,但我未能在上述代码中找到问题所在。