在执行django-admin时,总是抛出错误怎么办?
这是由包重名导致的问题,没有配置对路径,解释器没有找到你的mysite模块。
卸载后重新安装django1.3.7 版本即可。
Django 常用常见问题
odels中,对sqlites数据更新时,updatetime不更新问题
现象:使用批量更新的.update操作,数据更新了,但是updatetime不更新。而单独更新.save()则正常更新。
说明:
auto_now_add will set the field to the current time when an object is created and auto_now will set the field to the current time when an object is created or updated
auto_now_add是在创建字段的时候会自动记录创建时间。
auto_now是在更新对象和更新的时候记录更新时间。
原因:
The field is only automatically updated when calling Model.save(). The field isn’t updated when making updates to other fields in other ways such as QuerySet.update(), though you can specify a custom value for the field in an update like that.
这个字段只有在调用Mode.save()时才会自动更新。当使用批量插入的QuerySet.update()不会更新该字段,你可以通过指定一个特定的值来更新该字段。