我在 Rails 中有一个用于股票价格历史的模型,我想将来自 yahoo Finance api 的数据大量导入到我的模型中。
这就是我所拥有的:
columns = [:date,:open,:high,:low,:close,:volume,:adjusted_close,:asset_symbol]
values = ['2013-03-22',1,2,3,4,5,6,'YHOO']
AssetHistory.import columns,values
这导致错误说:undefined method each_with_index for '2013-03-22':String from .../activerecord-import/import.rb
请注意,我的值数组中的日期实际上是我模型中的日期类型。(是这个问题吗?)
我正在使用 Activerecord-import 0.3.1 和 Rails 3.2。如果这很重要,我也在使用 Postgresql。
我的带有注释的资产历史模型:
# Table name: asset_histories
#
# id :integer not null, primary key
# date :date
# open :float
# high :float
# low :float
# close :float
# volume :integer
# adjusted_close :float
# asset_symbol :string(255)
# asset_id :integer
#
class AssetHistory < ActiveRecord::Base
attr_accessible :adjusted_close, :close, :date, :high, :low, :open, :volume, :asset_id, :asset_symbol
has_and_belongs_to_many :assets
validates_uniqueness_of :asset_symbol, scope: [:date]
end
这个问题是什么原因?