微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/ruby/272061.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐