Rails:来自 XML 的模型属性
我是 Rails 新手,希望得到您对以下内容的建议。
我有一个模型说视频。 视频的某些属性存储在 MySQL 数据库中,而其他一些属性则存储在服务器上的关联 XML 文件中。
例如,id
、title
和 slug
存储在数据库中,而 duration
、thumbnails、
description
等存储在 XML 文件中。
我应该如何实现我的模型,以便可以访问视频的所有属性,而不仅仅是存储在数据库中的属性?
I am new to Rails and would like your suggestions for the following.
I have a model say Video.
Certain attributes of the Video are stored in MySQL database while some of other attributes are stored in an associated XML file on the server.
For example, id
, title
and slug
is stored in the database while duration
, thumbnails
, description
, etc are stored in an XML file.
How should I implement my model so that I can access all the attributes of the video and not only those stored in the database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
after_find
或after_initialize
从文件中读取属性并填充对象中的一些虚拟属性。然后使用 after_save 检查属性是否已更改,如果已更改,则将新属性写回到文件中。 更多详细信息请参见此处的 ActiveRecord::Callbacks 文档。Use
after_find
orafter_initialize
to read the attributes from the file and populate some virtual attributes in your object. Then use theafter_save
to check if the attributes have changed and if so write the new ones back out to the file. More detail in the ActiveRecord::Callbacks docs, here.