ruby-on-rails – Rails:状态与状态的比较失败
发布时间:2020-12-16 19:51:09 所属栏目:百科 来源:网络整理
导读:我需要获取所有current_user.friends状态,然后通过created_at进行排序. class User ActiveRecord::Base has_many :statusesendclass Status ActiveRecord::Base belongs_to :userend 在控制器中: def index @statuses = [] current_user.friends.map{ |frie
我需要获取所有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 } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |