私は現在RoRガイドを調べていますが、行き詰まっています...
「サンプルデータにフォロー/フォロワーの関係を追加します。」
動作するはずのコードは次のとおりです。sample_app/lib/task/sample_data.rake
namespace :db do
desc "Fill database with sample data"
task populate: :environment do
make_users
make_microposts
make_relationships
end
end
def make_users
admin = User.create!(name: "Example User2",
email: "example2@railstutorial.org",
password: "foobar",
password_confirmation: "foobar")
admin.toggle!(:admin)
99.times do |n|
name = Faker::Name.name
email = "example-#{n+1}@railstutorial.org"
password = "password"
User.create!(name: name,
email: email,
password: password,
password_confirmation: password)
end
end
def make_microposts
users = User.all(limit: 6)
50.times do
content = Faker::Lorem.sentence(5)
users.each { |user| user.microposts.create!(content: content) }
end
end
def make_relationships
users = User.all
user = users.first
followed_users = users[2..50]
followers = users[3..40]
followed_users.each { |followed| user.follow!(followed) }
followers.each { |follower| follower.follow!(user) }
end
rake db:reset
データベースを問題なくリセットすると。
私がrake db:populate
これを述べるエラーが発生したとき:
rake aborted!
Validation failed: Follower can't be blank`
だから私は自分のデータベースをチェックしました、そして「関係」テーブルを除いてすべてのテーブルが移入されました..何か考えや提案はありますか?def making_relationships
正確には、コードに問題があると確信しています。誰かがこれに対する解決策を持っていることを願っています。
-マーク