问题1:启动服务器后浏览器无法访问http://localhost:8000,访问被拒绝

django 错误分类及解决办法汇总_Django

解决办法:原因是没有开启IIS服务所致,解决方法参考http://jingyan.baidu.com/article/219f4bf723bcb2de442d38ed.html

 

问题2:TabError: inconsistent use of tabs and spaces in indentation

tab和空格混用所致,例如:

django 错误分类及解决办法汇总_搜索_02

django 错误分类及解决办法汇总_Django_03

解决办法:搜索\t,替换为'    ':

django 错误分类及解决办法汇总_Django_04

django 错误分类及解决办法汇总_2d_05