我正在使用名为
acts_as_commentable_with_threading
( https://github.com/elight/acts_as_commentable_with_threading ) 和acts_as_follower
( https://github.com/tcocca/acts_as_follower )的 gem
到目前为止,一切正常。我所有的追随者和追随者都可以正常工作。
现在,我正在尝试获取所有关注用户的所有评论。所以我尝试了这个
@users = current_user.following_users
@comments = @users.comment_threads.order("updated_at DESC").page(params[:page]).per(10)
但是,它返回此错误。
NoMethodError (undefined method `comment_threads' for #<ActiveRecord::Relation:0x0000000d1b7a58>):
为什么以及如何解决这个问题?
acts_as_commentable_with_threading
不支持数组对象???