将 Rails ActiveRecord 对象保存到临时表中 (MySQL)
用户可以将数据从文件导入我们的网站。 数据通常包含数百个项目(Item < ActiveRecord::Base)。
尽管验证有帮助,但它们无法解决内容健全性检查的问题。 为此,我们希望有一个测试模式。
我们可以在 Rails/MySQL 中使用临时 Items 表吗?如果可以,我们应该怎么做?
A user can import data into our website from a file.
The data normally contains several hundred Items (Item < ActiveRecord::Base).
Although the validations help, they cannot solve the problem of sanity-checking the content.
For that we would like to have a test mode.
Could we use a temporary Items table for this with Rails/MySQL, and, if yes, how should we do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 AR 扩展 gem 来实现此目的。阅读这篇文章了解更多详情。
或
You can use AR Extensions gem for this. Read this article for more details.
OR