标签:port url templates 创建 static html模板 bug 模式 路由
app=Flask(name,static_folder=“static”,static_url_path="/aaa",template_folder=“templates”)
__name__实际上是有值的,name=main,指的是该模块所在的目录
static_folder = “static”,设置静态资源夹的名字是static
static_url_path,设置访问静态资源的url前缀,若不存在该项,默认为static
template_folder,存放html模板的模板夹名字
app.run(host=127.0.0.1,port=5008,debug=True)
host=127.0.0.1 设置访问flask_web应用的ip是127.0.0.1
port=5008设置访问flask_web应用的端口是5008
debug=True设置调试模式打开
print(app.url_map) 打印路由和视图函数的对应关系
标签:port url templates 创建 static html模板 bug 模式 路由
原文地址:https://www.cnblogs.com/bruce-gou/p/10368355.html