如何使用 django-south 从 django-imagekit 迁移包含 ImageField 的模型?
我发现这个文档非常令人困惑: http://south.aeracode.org/docs/customfields.html
如果有人可以请引导我完成这个过程,或者至少给出一个完整的例子,我将非常感激。
I find this documentation extremely confusing:
http://south.aeracode.org/docs/customfields.html
If someone could walk me through this or at least give a full example, I would be very grateful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数时候,您只需要在使用自定义字段时执行类似的操作(例如使用 sorl.thumbnail 中的 ImageWithThumbnailsField):
来自 South 文档:如果您的自定义字段继承自核心 Django 字段,或其他字段已经有内省规则,并且它没有添加任何新属性,那么您可能不必为它添加任何规则,因为它将继承其父级的所有规则。
Most of the time, you just need to do something like this when using a custom field (example using the ImageWithThumbnailsField from sorl.thumbnail):
From the South docs: If your custom field inherits from a core Django field, or another field for which there are already introspection rules, and it doesn’t add any new attributes, then you probably won’t have to add any rules for it, as it will inherit all those from its parents.