Я «бэби-кодер», и я создаю новое приложение rails, и я хотел бы добавить некоторые данные.Приложение будет отображать различные прически, принадлежащие пользователю, что означает, что для каждой прически нужен идентификатор пользователя.В моем начальном файле я создал пользователей и прически, однако при запуске rails: dbseed в консоли выдает ошибку:
"NameError: undefined local variable or method `user' for main:Object
Did you mean? users"
Когда я запускаю rails c, я вижу, что пользователи созданы, но мои прически не отображаются.«т.Пожалуйста, кто-нибудь может мне помочь и объяснить, почему это так?Спасибо
ФАЙЛ СЕМЕНЫ:
Hairstyle.destroy_all
User.destroy_all
users = [
{
first_name: 'test',
last_name: 'Inniss',
email: 'angela@hair.com',
password: '123456'
},
{
first_name: 'test2',
last_name: 'Clarke',
email: 'aaron@hair.com',
password: '123456'
}
]
User.create!(users)
user.save
hairstyles = [
{
name: 'Single Braids',
description: 'Really easy to maintain',
category: 'Braids',
video_url: 'www.google.com',
photo_url: 'https://images.unsplash.com/photo-1533233336213-b3a32825c689?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1049&q=80',
user_id: User.first
},
{
name: 'Crochets',
description: 'Protective style',
category: 'Braids',
video_url: 'www.google.com',
photo_url: 'https://images.unsplash.com/photo-1533233336213-b3a32825c689?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1049&q=80',
user_id: User.first
}
]
Hairstyle.create!(hairstyles)