0
我的本地機器上有一個可用的rails應用程序。我更新了我的Heroku並開始測試它。我的一個觀點要求控制器使用unshift將元素添加到數組中。Heroku Array Unshift Method Rails
當我去這個觀點在網絡上,我得到一個錯誤We're sorry, but something went wrong.
我走進$heroku logs
和最近的錯誤是:
2014-02-28T02:08:26.650021+00:00 app[web.1]: NoMethodError (undefined method `unshift' for #<ActiveRecord::AttributeMethods::Serialization::Attribute:0x007fe57862f588>):
2014-02-28T02:08:26.650021+00:00 app[web.1]: app/controllers/users_controller.rb:32:in `show'
任何想法如何解決這一問題?
我控制器功能如下:
@user.daily = @user.daily.unshift(day)
@ user.daily是一個序列化的陣列