ActiveStorageを利用した際のseedデータ作成
初投稿です!宜しくお願いします。
やりたいこと
ActiveStorageを使って投稿機能を実装している状態でseedデータを準備したい。
ファイルの添付を必須にするバリデーションをかけている場合のデータを作成したい。
seedデータの用意
以下のやり方場合は、
ActiveRecord::RecordInvalid: バリデーションに失敗しました: 写真を追加してください
となってしまった。
失敗例
db/seeds.rb
10.times do |n|
post = Post.create!(
user_id: "1",
content: "投稿します!",
)
post.images.attach(
io: File.open(Rails.root.join("./app/assets/images/post/test.jpeg")),
filename: "test.jpeg"
)
end
成功例
db/seeds.rb
10.times do |n|
post = Post.new(
user_id: "1",
content: "投稿します!",
)
post.images.attach(
io: File.open(Rails.root.join("./app/assets/images/post/test.jpeg")),
filename: "test.jpeg"
)
post.save!
end
Post.create!ではバリデーションエラーに引っかかってしまいました。
Post.newからのpost.save!とすることで成功しました!!
Author And Source
この問題について(ActiveStorageを利用した際のseedデータ作成), 我々は、より多くの情報をここで見つけました https://qiita.com/YUUKI-Git611/items/37ad89ed228007289243著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .