@preComments = Comment.where(:resource_hash => resource_hash).sort(:created_at.desc).all
@preComments.each do |comment|
u = ::User.find_by_id comment.user_id
p u
@comments << @preComments
p "HERE!!!!!"
end
這是我的代碼,但@comments
沒有定義,所以我得到一個錯誤:如何附加到Rails迭代循環中的nil對象?
You have a nil object when you didn't expect it! You might have expected an instance of Array. The error occurred while evaluating nil.<<
如果我先創建一個數組,那麼我的觀點看不懂。那麼,我該如何做到這一點?
我下面回答,但如果你給的你試圖用'@ preComments'達到VS'@ comments'什麼更好的說明,有可能是一個更好的辦法。 – 2012-01-17 19:14:56
如果您先創建一個數組,請詳細說明爲什麼您的視圖無法讀取@comments? – 2012-01-17 20:14:30