如果这个问题看起来很混乱,我真的很抱歉;我会尽力使其简洁。
我正在构建一个模拟 ActiveRecord 模型的类,但从名为Airtable的服务而不是数据库中获取其数据。Airtable 就像 Excel 和数据库之间的交叉 - 它允许您创建数据电子表格,但支持不同表之间的“外键”,因此您可以链接表之间的数据。这对于我正在处理的应用程序非常有效。
为了使其具有可扩展性和灵活性,我创建了一个父类 ,AirtableModel
它定义了类从它继承时将填充的常用方法和属性。继承类的名称将帮助父方法从正确的 Airtable 表中访问数据并检索正确的属性。相关位如下(未提及的位不言自明或与问题无关):
class AirtableModel
def initialize(hash)
hash.each do |attribute_name, attribute_value|
attribute_value = self.class.first_value_from_arrays_with_singular_key_name(attribute_name, attribute_value)
# ^^^ Airtable always returns references as Arrays. If the relationship is a belongs_to, we pull out the value from the Array.
begin
attribute_name_as_class = attribute_name.to_s.singularize.camelize.constantize
# ^^^ Converts the attribute's name to a class constant. Used to make the generated method retrieve class records instead of ids. If the class doesn't exist, its NameError is caught below.
instance_variable_set("@#{attribute_name}_airtable_ids", attribute_value)
self.class.send(:define_method, attribute_name.to_sym) do
result = attribute_name_as_class.find_all_by_airtable_id(instance_variable_get("@#{attribute_name}_airtable_ids"))
result.length <= 1 ? result.first : result
end
rescue NameError
# Triggered if `attribute_name_as_class` doesn't match an existing class
instance_variable_set("@#{attribute_name}", attribute_value)
self.class.send(:define_method, attribute_name.to_sym) do
instance_variable_get("@#{attribute_name}")
end
end
end
end
# Reaches out to Airtable to get all records for this class's table (the Airtable table matches the class name). Collects the resulting data into an array of Hashes.
# One such hash might look like this:
# {
# 'id' => <unique string ID assigned by Airtable>,
# 'fields' => {
# 'db_id' => <Unique integer ID. I added this to emulate a database record>,
# ...
# }
# }
def self.airtable
@airtable_records ||= AirtableService.records_from_table(table_name: "#{self}s").each.map do |raw|
object_properties = raw['fields']
object_properties['airtable_id'] = raw['id']
object_properties['id'] = object_properties['db_id']
Hash[object_properties.collect { |k, v| [k.snakecase.parameterize.underscore.to_sym, v] }]
# ^^^ Converts parameter name to snake-case symbol, i.e. :db_id
end
end
def self.all
@all_records ||= airtable.map { |b| new(b) }
end
def self.find_by_airtable_id(airtable_id)
objects = all.select { |b| b.airtable_id == airtable_id }
raise "non unique airtable_id found" if objects.size > 1
objects.first
end
def self.find_all_by_airtable_id(airtable_ids)
[airtable_ids].flatten.map { |aid| find_by_airtable_id(aid) }
# ^^^ Accomodates airtable_ids as an Array or a single value
end
def self.first
all.first
end
def self.last
all.last
end
end
如果以上任何内容没有意义,请告诉我,我很乐意更新。
这对于继承自 的大多数类都非常有效AirtableModel
,但是我遇到了一个特定表(FooBar)的问题,该表应该像其他两个表之间的连接表一样。看起来像这样:
[Table Foo] [Table FooBar] [Table Bar]
fooBars <==========---------> foo bar <---------========> fooBars
他们的类定义非常简单:
class Foo < AirtableModel
end
class FooBar < AirtableModel
end
class Bar < AirtableModel
end
感谢上面的构造函数,我可以进行类似的调用并返回与 this 相关的所有实例Foo.first.foo_bars
的数组。这在控制台中没有问题,但是我在我的 Rails 应用程序中尝试上面的代码片段时遇到了问题。FooBar
Foo
foo_bars
在单个控制器创建操作中被调用两次。这恰好调用self.all
了两次。第一次,我得到了预期的结果——@all_records
等于我在 Airtable 中的记录数,具有正确的属性值,包括外键关系。但是,第二次输入该方法时,值将@all_records
变为空数组。调用的对象foo_bars
没有改变,仍然包括airtable_ids
用于查找关联FooBar
实例的正确对象。@airtable_records
- 方法的返回值self.airtable
- 仍然具有相同的值。
我不确定是什么导致 memoized@all_records
变量改变值。我一直在努力解决它,使用调试器逐步跟踪函数调用,但我看不出是什么导致值发生变化。任何人都可以就如何进一步调试提供任何建议吗?我将不胜感激。