【发布时间】:2010-10-17 16:32:25
【问题描述】:
我已经成功地为我的 rails 应用设置了自动完成字段。我要做的是列出查找表的内容,当我为几行选择查找文本时,我希望保存查找的 id 而不是文本本身。这是我所做的:
配方模型:
class Recipe < ActiveRecord::Base
# validates :name, :presence => true
# validates :directions, :presence => true
# has_and_belongs_to_many :ingradients
has_many :ingredients_recipes
has_many :ingredients, :through => :ingredients_recipes
accepts_nested_attributes_for :ingredients_recipes, :allow_destroy => true
end
控制器:
class RecipesController < ApplicationController
# autocomplete :ndb_food_des, :long_desc
autocomplete :ndb_food_de, :long_desc, :limit => 15
... more lines
end
然后我在视图中使用它:
<% f.fields_for :ingredients_recipes do |rif| %>
<td>
<%= rif.autocomplete_field :ingredient_id, recipes_autocomplete_ndb_food_de_long_desc_path, :width=>1000, :size=>60 %>
</td>
<% end %>
我在视图打开时生成了三个详细信息行,我想做的是从自动完成中写入所选项目的 ID。如果我在视图中将正确的字段指定为成分 ID,那么我总是在插入的 id 中得到 0。如果我指定其他字段,我会得到自动完成的全文,所以 Rails 似乎选择了正确的字段并且似乎知道该怎么做......但它没有得到正确的 id。
这是系统所做的事情的痕迹:
Started POST "/recipes" for 127.0.0.1 at 2010-10-17 16:28:10 +0000
Processing by RecipesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"wmNQbsGoiGccrNpmFs7r7D7ZBq//SBe9yrk6SFXP0lc=", "recipe"=>{"name"=>"dfsa", "description"=>"sdfa", "directions"=>"sadf", "ingredients_recipes_attributes"=>{"0"=>{"ingredient_id"=>"CAMPBELL Soup Company, CAMPBELL'S Beef Gravy", "readable_qty"=>"30", "description"=>""}, "1"=>{"ingredient_id"=>"Eclairs, custard-filled with chocolate glaze, prepared from recipe", "readable_qty"=>"60", "description"=>""}, "2"=>{"ingredient_id"=>"DENNY'S, MOONS & STARS chicken nuggets, from kid's menu", "readable_qty"=>"10", "description"=>""}}, "servings"=>"3", "time"=>"3"}, "commit"=>"Create Recipe"}
SQL (27.9ms) INSERT INTO "recipes" ("created_at", "description", "directions", "name", "owner", "servings", "time", "updated_at") VALUES ('2010-10-17 16:28:10.686644', 'sdfa', 'sadf', 'dfsa', NULL, 3, 3, '2010-10-17 16:28:10.686644')
SQL (0.2ms) INSERT INTO "ingredients_recipes" ("created_at", "description", "ingredient_id", "qty", "recipe_id", "updated_at") VALUES ('2010-10-17 16:28:10.729542', '', **0,** 32.0, 18, '2010-10-17 16:28:10.729542')
SQL (0.1ms) INSERT INTO "ingredients_recipes" ("created_at", "description", "ingredient_id", "qty", "recipe_id", "updated_at") VALUES ('2010-10-17 16:28:10.783068', '', **0,** 62.0, 18, '2010-10-17 16:28:10.783068')
SQL (0.1ms) INSERT INTO "ingredients_recipes" ("created_at", "description", "ingredient_id", "qty", "recipe_id", "updated_at") VALUES ('2010-10-17 16:28:10.784333', '', **0,** 12.0, 18, '2010-10-17 16:28:10.784333')
Redirected to http://0.0.0.0:3000/recipes/18
Completed 302 Found in 190ms
Started GET "/recipes/18" for 127.0.0.1 at 2010-10-17 16:28:10 +0000
Processing by RecipesController#show as HTML
Parameters: {"id"=>"18"}
Recipe Load (0.4ms) SELECT "recipes".* FROM "recipes" WHERE ("recipes"."id" = 18) LIMIT 1
IngredientsRecipe Load (0.3ms) SELECT "ingredients_recipes".* FROM "ingredients_recipes" WHERE ("ingredients_recipes".recipe_id = 18)
Ingredient Load (0.2ms) SELECT "ingredients".* FROM "ingredients" WHERE ("ingredients"."id" = 0) LIMIT 1
CACHE (0.0ms) SELECT "ingredients".* FROM "ingredients" WHERE ("ingredients"."id" = 0) LIMIT 1
CACHE (0.0ms) SELECT "ingredients".* FROM "ingredients" WHERE ("ingredients"."id" = 0) LIMIT 1
CACHE (0.0ms) SELECT "ingredients".* FROM "ingredients" WHERE ("ingredients"."id" = 0) LIMIT 1
CACHE (0.0ms) SELECT "ingredients".* FROM "ingredients" WHERE ("ingredients"."id" = 0) LIMIT 1
CACHE (0.0ms) SELECT "ingredients".* FROM "ingredients" WHERE ("ingredients"."id" = 0) LIMIT 1
Rendered recipes/show.html.erb within layouts/application (112.1ms)
Completed 200 OK in 143ms (Views: 117.4ms | ActiveRecord: 0.9ms)
我在上面的示例中将文本设置为粗体,它正在编写文本而不是自动完成中的 id。我不知道如何将其设置为使用 id。
非常感谢您的帮助。
【问题讨论】:
标签: jquery ruby-on-rails ruby autocomplete