Rails:来自 XML 的模型属性

发布于 2024-11-23 18:29:28 字数 326 浏览 1 评论 0原文

我是 Rails 新手,希望得到您对以下内容的建议。

我有一个模型说视频。 视频的某些属性存储在 MySQL 数据库中,而其他一些属性则存储在服务器上的关联 XML 文件中。

例如,idtitleslug 存储在数据库中,而 durationthumbnails、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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扎心 2024-11-30 18:29:28

使用 after_findafter_initialize 从文件中读取属性并填充对象中的一些虚拟属性。然后使用 after_save 检查属性是否已更改,如果已更改,则将新属性写回到文件中。 更多详细信息请参见此处的 ActiveRecord::Callbacks 文档。

Use after_find or after_initialize to read the attributes from the file and populate some virtual attributes in your object. Then use the after_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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文