ruby-on-rails – Rails:状态与状态的比较失败

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails:状态与状态的比较失败前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要获取所有current_user.friends状态,然后通过created_at进行排序.
class User < ActiveRecord::Base
 has_many :statuses
end

class Status < ActiveRecord::Base
 belongs_to :user
end

在控制器中:

def index
    @statuses = []
    current_user.friends.map{ |friend| friend.statuses.each { |status| @statuses << status } }
    current_user.statuses.each { |status| @statuses << status }

    @statuses.sort! { |a,b| b.created_at <=> a.created_at }
end

current_user.friends返回一个对象数组

friend.statuses返回一个对象的数组状态

错误

comparison of Status with Status Failed
app/controllers/welcome_controller.rb:10:in `sort!'
app/controllers/welcome_controller.rb:10:in `index'

解决方法

我有一个类似的问题,用to_i方法解决,但不能解释为什么会这样.
@statuses.sort! { |a,b| b.created_at.to_i <=> a.created_at.to_i }

顺便说一句,这是按降序排序的.如果你想升序是:

@statuses.sort! { |a,b| a.created_at.to_i <=> b.created_at.to_i }
原文链接:https://www.f2er.com/ruby/272061.html

猜你在找的Ruby相关文章