我最近在我的rails 5.2项目中实现了Active Storage,在为用户提供头像时遇到问题:
<img src="assets/images/01.jpg">
此代码不会停止或继续进行下一个播种。
user = User.new(
email: "user@email.com",
password: 123456,
name: "User Userson"
)
user.skip_confirmation!
user.save!
user.avatar.attach(io: File.open('app/assets/images/avatar.png'), filename: 'avatar.png', content_type: 'image/png')
似乎开始异步上传图像,并且当它四处上传时,它停止了整个功能。
有什么建议吗?
编辑:
attach()
User.rb