克隆关联与附加文件
我有一个用作模式的对象。该对象有许多关联。这些关联之一是附件。我的对象有很多附件。我可以克隆所有数据库数据,但是我应该如何处理附加到我的对象的文件。
我可以想象一些解决方案,但所有这些解决方案都有点老套,而且看起来并不原生。
例如,当我克隆对象时,我可以将虚拟属性添加到附件的临时存储 ID。
I have got an object wich I am using as a pattern. This objects has got a number of associations. One of those association is an attach. My object has many attaches. I can clone all, you know, db data, but how should I do it with files, that are attached to my object.
I can imagine some solutions, but all of them little hacky and don't look native.
For example I can add virtual attribute to temprorary store ids of attaches while I am cloning an object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有什么解决方案来管理附件?如果像 Paperclip 这样的东西,它有一个回调来处理文件系统级别上的删除/克隆真实文件。
what's the solution do you have to manage attachments? If something like Paperclip, it has a callback that handles remove/cloning the real files on filesystem level.