我正在使用 ROAR 为 Rails 应用程序实现 API。此应用程序处理可以具有主题和描述等属性的票证,但也具有用户定义的属性。为简单起见,我们假设一张票看起来像:
class Ticket
attr_accessor :subject, :description
def custom_attributes
# in reality these attributes depend on the current ticket instance
# they are not hard-coded into the class
[['priority', 'high'], ['Operating System', 'Ubuntu']]
end
end
此类票证所需的 JSON 输出如下所示:
{
"subject": "Foo",
"description": "Bar",
"customField1": "high",
"customField2": "Ubuntu"
}
现在您可能已经看到了问题所在。所有属性都是根对象的直接子对象,这意味着我不能将其写为代表:
class TicketRepresenter
property :subject
property :description
# Need to iterate over instance members on the class level here...
end
ROAR 是否提供了一些机制来实现这一目标?例如,在实际实例的上下文中执行的回调,例如
def call_me_on_write
represented.custom_attributes.each do |attribute|
add_property('customField1', attribute[1])
end
end
在 ROAR 中是否有类似的东西我忽略了实现这一点?
免责声明
我试图简化实际情况以使问题更具可读性。如果您认为缺少重要信息,请告诉我。谢天谢地,我会提供更多细节。
超出范围
请不要讨论选择的 JSON 格式是好还是坏,我想评估 ROAR 是否支持它。