0

best_in_place gemをプロジェクトに追加しましたが、ページの再読み込みが行われるまで更新は有効になりません。ショービューでフラッシュが表示されますが、ページをリロードする必要があります。どうしてこれなの?

マイリストコントローラー:

 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ファイルの順序でしょうか?ページをリロードせずに更新を取得するには、ここで何を見落としていますか?ご清聴ありがとうございました。

4

1 に答える 1

1

respond_to :jsonリストコントローラーの一番上に追加するのを忘れただけです。見てくれた人ありがとう。

于 2012-11-03T22:24:52.713 に答える