我正在使用名为acts_as_follower
(https://github.com/tcocca/acts_as_follower)的 gem
在这里,我试图获取所有关注 current_user 的用户。
然后我希望它们按名为的列排序last_active_at
所以我尝试像这样编写代码,但它返回了错误。我该如何解决?
控制器
@followed_users = current_user.followers.order('users.last_active_at DESC').limit(10)
错误信息
NoMethodError (undefined method `order' for #<Array:0x0000000ab3cf18>):