我在我的应用程序中使用paper_trail(https://github.com/airblade/paper_trail)gem进行商店版本控制。我用class_name自定义。我能够通过查询收集记录但是如何访问对象的数据
ElementVersion(id: integer, item_type: string, item_id: integer, event: string, whodunnit: string, object: text, created_at: datetime)
The object have a information are
---
id: 431
heading: some text
body: "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" \"http://www.w3.org/TR/REC-html40/loose.dtd\">\n<html><body>\ndfklsjdalfjlds</body></html>\n"
element_type_id: 5
parent_id: 430
position: 1
version_id:
created_at: 2016-04-18 04:35:52.916000000 Z
updated_at: 2016-05-13 04:56:51.371376000 Z
ended_at:
lock_version: 85
display_heading: false
lock_time: 2016-05-13 04:56:51.000000000 Z
locked_by: 16
project_id:
survey_id:
cover_image_id:
details: "{}"
work_id:
ElementVersion.where_object(parent_id: 430)
它返回一组记录,但我无法访问&#34; body&#34;来自上述查询的内容。您对如何解决此问题有任何想法吗?
答案 0 :(得分:1)
ElementVersion.where_object(parent_id:430) 它返回一组记录,但我无法访问“body”..
Version.where_object
方法返回Relation
个Version
个对象,就像普通的where
方法一样。
文档的Basic Usage部分介绍了如何从Version
记录中检索原始记录。
widget = Widget.find 153
widget.name # 'Doobly'
widget.update_attributes :name => 'Wotsit'
widget.versions.last.reify.name # 'Doobly'
因此,您可以reify
将ElementVersion
条记录设为Element
,然后在其上调用#body
。
快乐(纸)小径!