0

我使用 best_in_place gem 编辑评论列表。这是我的代码。只是工作。但是创建新评论时失败了。几分钟后它也可以工作并刷新页面

%= 评论:内容类型::textarea,路径:commen_path(comment),激活器:“#activator-#{comment.id}”%>

('.best_in_place').best_in_place(); 该代码包括 js 文件中的 best_in_place。

也许它包括实时绑定......但是如何?

4

1 回答 1

0

它对我有用:

<% Comment.where(:user_id =>current_user.id).each do |comment| %>
  <%= best_in_place comment,:content %>
<%end%>
于 2013-07-11T10:43:26.290 回答