在执行django-admin时,总是抛出错误ModuleNotFoundError: No module named 'mysite'怎么办??
这是由包重名导致的问题,没有配置对路径,解释器没有找到你的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()不会更新该字段,你可以通过指定一个特定的值来更新该字段。
遇到同样的问题,由包重名导致的问题,已解决
参考的http://blog.csdn.net/Watson2016/article/details/52291704;选择sqlite数据库django version时版本直接选择默认的导致项目目录重复,应选择已安装版本现在一般都选1.4orlater。
还是一样错误
这个很奇怪耶,没见过别人遇到这种情况的
python django-admin startproject mysite
试一下咯,不行的话,就卸载django重新安装咯
试一下用python3.5的pip安装,而不是3.6的pip
另外多版本python最好用virtualenv做项目隔离