材料と 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)