使用best_in_place gem编辑我的评论列表。那是我的代码。干得好。但是在创建新评论时失败了。它也会在几分钟后工作并刷新页面
%=评论:内容类型:: textarea,路径:commen_path(评论),激活:“#activator - #{comment.id}”%>
( 'best_in_place')best_in_place();该代码包含js文件中的best_in_place。
也许它包括实时绑定......但是如何?
答案 0 :(得分:0)
以下内容对我有用:
<% Comment.where(:user_id =>current_user.id).each do |comment| %>
<%= best_in_place comment,:content %>
<%end%>