我正在尝试在 Rails 应用程序中播种数据,尤其是使用载波的应用程序。我正在使用在 stackoverflow 上找到的 2 个不错的解决方案的组合!
我有以下内容:
namespace :db do
desc "This loads the development data."
task :seed => :environment do
require 'active_record/fixtures'
Dir.glob(RAILS_ROOT + '/db/fixtures/*.yml').each do |file|
base_name = File.basename(file, '.*')
puts "Loading #{base_name}..."
ActiveRecord::Fixtures.create_fixtures('db/fixtures', base_name)
end
#add in the image file for the default data
for item in Item.find(:all)
item.filename.store!(File.open(File.join(Rails.root, "app/assets/images/objects/" + item.name.gsub(/ /,'').downcase + ".svg")))
item.save!
end
end
desc "This drops the db, builds the db, and seeds the data."
task :reseed => [:environment, 'db:reset', 'db:seed']
end
但是在heroku上,我不断收到有关路径的错误,例如
rake aborted!
No such file or directory - app/assets/images/objects/house.svg
我已经尝试了该行的几个版本:
item.filename.store!(File.open(File.join(Rails.root, "app/assets/images/objects/" + item.name.gsub(/ /,'').downcase + ".svg")))
我基本上改变了使用 File.join 和只是连接并且还尝试使用 RAILS_ROOT 这似乎在上面工作正常,但我似乎总是得到这个错误。