使用嵌套属性的 where 条件访问子项
Access childrens using where condition for nested attributes
我设置了以下关系,仪表板过滤器值有一个名为 filter_type 的列,它的值可以是 1 或 0。
class DashboardFilterValue < ApplicationRecord
belongs_to :dashboard_filter
end
class DashboardFilter < ApplicationRecord
has_many :dashboard_filter_values, dependent: :destroy
accepts_nested_attributes_for :dashboard_filter_values
before_save :check_parameter_length
def check_parameter_length
Rails.logger.info self.dashboard_filter_values.inspect #prints the ActiveRecord::Associations::CollectionProxy
Rails.logger.info self.dashboard_filter_values.where(:filter_type => 0) #does not print anything
end
end
在before_save
回调中,
当我使用 self.dashboard_filter_values.inspect
时,会打印
ActiveRecord::Associations::CollectionProxy
.
但是self.dashboard_filter_values.where(:filter_type => 0)
不会打印任何东西,即使有满足条件的记录。
在before_save
回调中,如何使用where条件过滤我想要的值。
这方面的任何帮助都将非常有用。谢谢。
我认为这是行不通的,因为 before_save
操作。当您使用 where
时,它正在执行数据库查询,但是因为您在数据库保存之前查询它,所以没有返回任何内容。
我会说你有两个选择:
- 将其转换为
after_save
- 改用
Enumerable#select
:
Rails.logger.info self.dashboard_filter_values.select { |filter| filter.filter_type == 1 }
我设置了以下关系,仪表板过滤器值有一个名为 filter_type 的列,它的值可以是 1 或 0。
class DashboardFilterValue < ApplicationRecord
belongs_to :dashboard_filter
end
class DashboardFilter < ApplicationRecord
has_many :dashboard_filter_values, dependent: :destroy
accepts_nested_attributes_for :dashboard_filter_values
before_save :check_parameter_length
def check_parameter_length
Rails.logger.info self.dashboard_filter_values.inspect #prints the ActiveRecord::Associations::CollectionProxy
Rails.logger.info self.dashboard_filter_values.where(:filter_type => 0) #does not print anything
end
end
在before_save
回调中,
当我使用 self.dashboard_filter_values.inspect
时,会打印
ActiveRecord::Associations::CollectionProxy
.
但是self.dashboard_filter_values.where(:filter_type => 0)
不会打印任何东西,即使有满足条件的记录。
在before_save
回调中,如何使用where条件过滤我想要的值。
这方面的任何帮助都将非常有用。谢谢。
我认为这是行不通的,因为 before_save
操作。当您使用 where
时,它正在执行数据库查询,但是因为您在数据库保存之前查询它,所以没有返回任何内容。
我会说你有两个选择:
- 将其转换为
after_save
- 改用
Enumerable#select
:
Rails.logger.info self.dashboard_filter_values.select { |filter| filter.filter_type == 1 }