flask开发中最好加上这句:
app.run(debug = True)
若用到Form,wtforms,则要有这个:
app.config['SECRET_KEY'] = 'hard to guess string'
害我调试老半天,哎
html代码form以post提交数据,要显示指明,action用于指定提交后要去的网页,action=""中有中文的似乎的先做encoding处理。
使用werkzeug产生ssl加密密钥和证书:
from werkzeug.serving import make_ssl_devcert make_ssl_devcert('/path/to/the/key', host='localhost')