抱歉这个愚蠢的问题,但我已经用谷歌搜索了很多,似乎无法弄清楚我实际上遇到的问题是什么。我正在尝试插入一个(n 空)表并获得以下信息:
/var/lib/gems/1.9.1/gems/activerecord-3.2.13/lib/active_record/attribute_assignment.rb:69:in `assign_attributes': undefined method `stringify_keys' for "A":String (NoMethodError)
我在另一个表中查询“ticker”字段并计算该ticker 的growth_rate,然后尝试将这些值插入fast_growers。以下是相关代码:
Tickers.all.each do |t|
ticker = t.ticker
#get ticker data from interwebs and parse with Nokogiri
#calculate growth_rate
FastGrowers.create(ticker, growth_rate)
end
如果有人能对正在发生的事情有所了解,我将不胜感激。
谢谢!