我加入了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文件的顺序? 我俯瞰什么这里获取更新才能不重新加载页面? 感谢您的关注。