1

在我之前的问题中,我最终发现以下代码似乎按预期工作:

def my_squeel_query
  table_name = Squeel::Nodes::Stub.new("#{self.class.to_s.tableize}_comment_associations".to_sym)

  commenters.
    .where{
      table_name.article_id.eq(my{self.id})
    }
end

是否可以使article_id语句像为table_name变量所做的那样动态?

也就是说,我想做一些类似以下的东西:

def my_squeel_query
  table_name = Squeel::Nodes::Stub.new("#{self.class.to_s.tableize}_comment_associations".to_sym)

  commenters.
    .where{
      table_name.<DYNAMIC_KEY>.eq(my{self.id}) # '<DYNAMIC_KEY>' refers to a column name present in the 'commenters' database table.
    }
end
4

1 回答 1

2

您可以使用send.

column_name = :article_id
commenters.where{
  table_name.send(column_name).eq(my{self.id})
}
于 2012-09-27T01:43:07.120 回答