如何使用 Rails 类方法进行排序

问题描述 投票:0回答:1

我正在尝试使用类方法对实例进行排名:

@sorted_datsk_hpe = all_datsk_hpe.sort_by { |hpe| Hpe.datsk_point_count(hpe) }

这把我带到了这里:

def self.datsk_point_count(hpe)
    points = 0
    if hpe.gen_ac != ""
      if hpe.gen_aa != nil
        points += hpe.gen_aa.to_i * hpe.gen_acd
      else
        points += hpe.gen_amc.to_i * hpe.gen_acd
      end
    else
      (1..10).each do |num|
        if hpe["ad_c_#{num}"] != ""
          if hpe["ad_c_#{num}_available"] != nil
            points += hpe["ad_c_#{num}_available"].to_i * hpe["ad_c_#{num}_discount"]
          else
            points += hpe["ad_c_#{num}_max_capacity"].to_i * hpe["ad_c_#{num}_discount"]
          end
        end
      end
    end
    points
  end

这给了我

TypeError: String can't be coerced into Integer
    from app/models/hpe.rb:420:in `+'
    from app/models/hpe.rb:420:in `datsk_point_count'
    from (irb):30:in `block in irb_binding'
    from (irb):30:in `sort_by'
    from (irb):30

但是如果我用单个实例单独运行类方法,它就可以工作,所以我一定做错了 sort_by ?

ruby-on-rails ruby sorting
1个回答
0
投票

代码是对的,我只是不知道模型代码更改需要重新启动控制台,类似于修改javascript等时需要刷新页面

这可能不完全准确,因为我是新手,但重新启动控制台解决了问题。

© www.soinside.com 2019 - 2024. All rights reserved.