Flask
作者:互联网
Flask中文官网
https://dormousehole.readthedocs.io/en/latest/
Flask-Script
https://flask-script.readthedocs.io/en/latest/
csdn
https://blog.csdn.net/twc829/article/details/52154214
常见错误
1ModuleNotFoundError: No module named 'flask._compat'
出现原因:
出现这个问题的原因主要还是flask扩展升级到2.0 删除了一些文件,导致有些问题 解决方法: 主要思路就是安装低版本的就好了,所以解决方法是先卸载新的版本,在安装低版本的就好了pip uninstall flask pip install Flask==1.1.42.
ImportError: cannot import name ‘soft_unicode‘ from ‘markupsafe‘
更新版本到 jinja2 3.0.3
pip uninstall jinja2 pip install jinja2==3.0.3
3.
cannot import name 'Required' from 'wtforms.validators'
解决方法
--所有的改为DataRequired --Required停用了
4. 不能在一个限制区域内访问非限制区域(记不清问题了)
一般是端口问题,修改下端口号
参考 https://blog.csdn.net/Varose/article/details/123135657 https://www.lfd.uci.edu/~gohlke/pythonlibs/#jinja2 5.Internal Server Error
The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application. The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.
原因:可能是重复跑了好几次代码,导致服务器崩溃 方法1:关机重启,,不太方便 方法2:https://blog.csdn.net/weixin_41733260/article/details/100532091 一般flask启动时监听的是5000端口,如果修改的话更改后面的端口号 找出端口5000的进程,将进程杀死
netstat -ano | findstr 5000 taskkill /pid XXXXX /f (XXXXX的地方用进程号替换)
参考链接:https://blog.csdn.net/weixin_43211480/article/details/113663357
————————————————标签:Flask,blog,flask,jinja2,https,csdn 来源: https://www.cnblogs.com/zyjzz/p/16173658.html