このチュートリアル [https://github.com/crowdint/rails3-jquery-autocomplete][1] に従っていますが、問題があります。
私のモデル:
class Category < ActiveRecord::Base
attr_accessible :name
has_many :products
end
class Product < ActiveRecord::Base
attr_accessible :name, :category_id
belongs_to :category
end
スキーマ:
create_table "categories", :force => true do |t|
t.string "name"
end
create_table "products", :force => true do |t|
t.string "name"
t.integer "category_id"
end
これが私のコントローラーです:
autocomplete :category, :name
私のレイアウトはこれを持っています:
<%= javascript_include_tag :defaults, "autocomplete-rails.js" %>
私のルートにはこれがあります:
resources :products do
get :autocomplete_category_name, :on => :collection
end
そして私のフォームはこれを持っています:
<%= f.autocomplete_field :category_name, autocomplete_category_name_products_path %>
app/assets/javascript フォルダーに autocomplete-rails.js があります。それでも、何らかの理由でこのエラーが発生し続けます:
undefined method `category_name'