Symbol与100的比较失败



我正在为新版本的Ruby on Rails重写一个名为Emissions Gateway的程序。

我有一个方法是用一个叫做Squeel的宝石的语法写的,我很难重写它。我已经失败了4个多小时了,似乎还是搞不懂。

这个方法在这里,它在一个叫做datalogger的模型中。Rb以及数据记录器的模式信息。rb模型。

# == Schema Information
#
# Table name: dataloggers
#
#  id                    :integer          not null, primary key
#  project_id            :integer
#  created_at            :datetime         not null
#  updated_at            :datetime         not null
#  original_file_name    :string(255)
#  original_content_type :string(255)
#  original_file_size    :integer
#  original_updated_at   :datetime
#  status                :string(255)      default("incomplete")
#  hours                 :integer
#  readings_total        :integer
#  readings_start        :datetime
#  readings_stop         :datetime
#  direct_upload_url     :string(255)
#  version               :string(255)
#  comments              :string(255)
#  bypass                :boolean          default(FALSE)
#  device_id             :integer
#  device_name           :string(255)
#  device_description    :string(255)
#  device_serial         :integer
#  md5                   :string(255)
#  user_id               :integer
#  reported_at           :datetime
#  user_reported_id      :integer
#  reported              :boolean
def stats(temperatures)
unless bypass
@temperatures = temperatures
@stats = {}
@cumulative_percent_at = 0
@cumulative_readings = 0
@temperatures.each_cons(2) do |current_n, next_n|
# puts "Evaluating #{current_n} and #{next_n}"
@stats["#{next_n}"] = {}
# CHANGED v0.009 9/27/2021 Scott Milella
# readings_at = readings.where{(temperature.gt current_n) & (temperature.lteq next_n)}.sum(:frequency)
readings_at = Reading.where(:temperature > current_n).and(:temperature <= next_n).sum(:frequency)
@stats["#{next_n}"][:readings] = readings_at
# puts "Readings at: #{readings_at}"
# @cumulative_readings = @stats.map{|_, v| v[:readings] }.sum
# puts "Cumulative Readings: #{cumulative_readings}"
percent_at = ((readings_at.to_f / readings_total) * 100 )
@stats["#{next_n}"][:time_at] = percent_at
@cumulative_percent_at += percent_at
# puts "Percent at: #{percent_at}%"
# puts "Cumulative Percent at: #{@cumulative_percent_at}"
percent_over = 100 - @cumulative_percent_at
@stats["#{next_n}"][:over] = percent_over
# puts "Percent Over: #{percent_over}%"
# puts "Progress: #{@cumulative_readings}/#{readings_total} readings"
end
end

这是我改变的方法:

readings_at = Reading.where(:temperature > current_n)
.and(:temperature <= next_n).sum(:frequency)      

你可以看到我在上面的方法中改变了什么,以及我用# changed表示它。它给了我这个错误,称为符号与100的比较失败,这对我来说没有意义,因为:符号是来自另一个称为Reading的模型的整数。

模型如下:

# == Schema Information
#
# Table name: readings
#
#  id            :integer          not null, primary key
#  temperature   :integer
#  frequency     :integer
#  datalogger_id :integer
#
class Reading < ActiveRecord::Base
belongs_to :datalogger
attr_accessible :frequency, :temperature, :datalogger_id
validates_presence_of :frequency, :temperature, :datalogger_id
end

我不明白为什么我不能比较整数与整数,不管它是否在一个符号?我的语法有问题吗?它没有给我语法错误。我尝试了大约1000种其他的方法来写它,我得到了各种各样的错误从>数组中找不到的所有其他东西。如果有人想看整个数据记录仪。我将张贴它,它是相当长的,似乎只是这个方法,问题存在于。

这是我从当前版本的排放网关的SQL中捕获的一行:您可以看到数字272应该是current_n,而150是下一个n,我可以在better_errors控制台验证这些值。所以我不明白我哪里出错了。我猜这可能与我不理解的each_cons方法有关。

我修改了它,这样你就可以在一个地方看到所有的SQL,否则它会显示为一行。为了避免混淆,我将在后面展示它:

2021-09-27T18:50:49.173173+00:00 app[web.1]:  (1.5ms)  SELECT SUM("readings"."frequency") 
AS sum_id FROM "readings" 
WHERE "readings"."datalogger_id" = 272 
AND (("readings"."temperature" > 100 
AND "readings"."temperature" <= 150))

输出的SQL

2021-09-27T18:50:49.173173+00:00 app[web.1]:  (1.5ms)  SELECT SUM("readings"."frequency") AS sum_id FROM "readings" WHERE "readings"."datalogger_id" = 272 AND (("readings"."temperature" > 100 AND "readings"."temperature" <= 150))

如果有人能指出我需要如何重写这个方法,我会非常感激,我已经尝试了几个小时,但没有任何进展。

这是挤压的使用说明,以防有人需要看。

https://github.com/activerecord-hackery/squeel

我希望那颗宝石从来没有写过,它给我带来了如此多的痛苦,这是不真实的!

谢谢你,斯科特

好的,让我们深入了解一下您的查询:

readings_at = Reading.where(:temperature > current_n).and(:temperature <= next_n).sum(:frequency)

:temperature > current_n:temperature <= next_m都将符号(左侧)与整数(右侧)进行比较。这就是为什么你得到一个ArgumentError

实现您正在做的事情的Rails语法是:

readings_at = Reading.where('temperature > ? AND temperature <= ?', current_n, next_n).sum(:frequency)

或者,如果您愿意,添加多个where将在查询中添加一个AND子句。所以下面是等价的:

readings_at = Reading.where('temperature > ?', current_n).where('temperature <= ?', next_n).sum(:frequency)

使用?保证Rails将"清理";

相关内容

  • 没有找到相关文章

最新更新