best_in_place宝石,查看没有重新加载页面显示更新编辑(best_in_place gem

2019-11-01 04:37发布

我加入了best_in_place宝石我的项目,直到重新加载页面已经发生了更新不生效。 我可以看到它在我的节目观看Flash,但它需要重新加载页面。 为什么是这样?

我的列表控制器:

 respond_to :html, :xml, :js


  def update
    @list = List.find(params[:id])
    @list.update_attributes(params[:list])  
    respond_with(@list, :location => list_url(@list))
  end

我的列表显示视图

  <h2 class="page-header"><%= best_in_place @list, :name %></h2>
  <h2 class="lead"><%= best_in_place @list, :description %></h2>

我gemfile-

group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'
  gem 'best_in_place'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  # gem 'therubyracer', :platforms => :ruby
  gem 'jquery-ui-rails'
  gem 'uglifier', '>= 1.0.3'
end

我的应用程序清单JS -

//= require jquery
//= require jquery_ujs
//= require jquery.ui.datepicker
//= require justgage
//= require raphael.min
//= require jquery.purr
//= require best_in_place
//= require_tree .

我的名单咖啡 -

jQuery ->
  $('#task_due_date').datepicker
    dateFormat: 'mm/dd/yy'

jQuery ->
  $('.best_in_place').best_in_place()

难道是我的清单js文件的顺序? 我俯瞰什么这里获取更新才能不重新加载页面? 感谢您的关注。

Answer 1:

我只是忘了加上respond_to :json在我的名单控制器的顶部。 感谢那些接过来一看。



文章来源: best_in_place gem, view not displaying updated edit without page reload