嗨,Djangonauts 伙伴们:
我用django-lint检查了我的项目,它产生了:
W:211,16:MyModel: timestamp: Uses superceded auto_now or auto_now_add
提交消息:
auto_now/auto_now_add not technically deprecated, but they still suck.
为什么他们说 auto_now/auto_now_add “suck”?使用这两个字段参数实现 created/last-updated 模式没有问题。
这种模式有更好的方法吗?自定义字段类?为什么(如果这种方法更好)它没有被集成到 Django 中?