使用rails 3上的best_in_place gem activator按钮进行实时编辑

时间:2013-03-25 05:12:24

标签: ruby-on-rails-3 best-in-place

使用best_in_place gem编辑我的评论列表。那是我的代码。干得好。但是在创建新评论时失败了。它也会在几分钟后工作并刷新页面

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

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

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

1 个答案:

答案 0 :(得分:0)

以下内容对我有用:

<% Comment.where(:user_id =>current_user.id).each do |comment| %>
  <%= best_in_place comment,:content %>
<%end%>