解决:项目名称——右键——设为Sources root
2. cannot find templates
解决:在setting.py里把空的'DIRS’改成
'DIRS': [os.path.join(BASE_DIR,'templates')],
3. page not found
老师课上url路径设置为path(r'^app01/',include('app01.urls')),当只有一个项目时可以运行,然而多项目时报错,此时需要把^都去掉。
4.社区版在tools里找不到run manage.py task
解决:运行项目,会报错,此处错误原因是Django项目版本与mysql驱动版本不匹配的问题,点链接进去把版本的两行注释掉,然后在settings.py里把项目名称加进去,运行python manage.py makemigrations以及python manage.py migrate
5. 社区版连接mysql出现报错:The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
解决:
6. 双击表单选择no filter就看到表单内容了。
pycharm+django怎么同步数据库如果是同一种数据库的话,你同步的数据表结构是否相同,如果也相同的话,完全可以利用数据库的同步复制机制来解决;
(做主从) 如果表结构不相同的话,如果不在应用层处理的话,有两种方式参考:
1,A推数据给B;A有数据的时候,实时或非实时(采用event或trigger)将数据推到B中,B再做处理;
2,B从A拉数据,用一个event(mysql中的job)定时从A中拉数据然后进行处理;
另外可以选择在应用层来做,这个我就不多介绍了,根据业务逻辑coding就行了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)