4

材料と has_many 関係を持つレシピをデータベースにシードしようとしています。成分テーブルには 4 つの行があります。ただし、コードでエラーが発生し続けます。これが私のコードです。私はレールにかなり慣れていませんが、まだ解決策を見つけることができませんでした。Postgres で Rails 4 を使用しています。

エラー

rake aborted!
Ingredient(#xxxxxxx) expected, got Hash(#xxxxxxx)

Tasks: TOP => db:seed
(See full trace by running task with --trace)

レシピ

class Recipe < ActiveRecord::Base
   attr_accessible :title, :descrition, :image
   has_many :ingredients
   accepts_nested_attributes_for :ingredients
end

成分

class Ingredient < ActiveRecord::Base
   attr_accessible :measure, :modifier, :item, :note
   belongs_to :recipe
end

Seed.rb (ここの例には、各成分の各行にコンテンツを持つ 2 つの成分があります)

Recipe.create(
[{
    title: "Recipe title here", 
    description: "This is the description", 
    image: "theimage.jpg", 
    ingredients_attributes: [{measure: "1cup", modifier: "canned", item: "Mushrooms", note: "drained"}, {measure: "1lb", modifier: "sliced", item: "Bacon", note: "previously cooked"},]
}], 
without_protection: true)
4

2 に答える 2

13

次の方法で実行できます。

recipe = Recipe.create({
    title: "Recipe title here", 
    description: "This is the description", 
    image: "theimage.jpg"})

recipe.ingredients.create(measure: "1cup", modifier: "canned", item: "Mushrooms", note: "drained")
recipe.ingredients.create(measure: "1lb", modifier: "sliced", item: "Bacon", note: "previously cooked"})
于 2013-11-06T21:03:52.210 に答える
0

解決策を修正する方法はわかりませんが、次のアプローチをお勧めします。

# initialize new recipe
recipe = Recipe.new(title: "", description: "", image: "")

# build ingredients
recipe.ingredients.build(measure: "", modifier: "", item: "", note: "")
recipe.ingredients.build(measure: "", modifier: "", item: "", note: "")

recipe.save

.save on レシピを実行すると、材料も保存されます。

于 2013-11-06T21:02:32.750 に答える