IWonderWhy

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  • Werkzeug:response,request,routing

获取请求参数:data,form,args,files,cookies,headers,method,url
routing:Rule类-用来构造不同的URL模式的对象,路由URL规则
Map类-存储所有的URL规则和一些配置参数
Baseconvertor子类-负责定义匹配规则
MapAdapter类-负责协调Rule做具体的匹配的工作

@app.route("/upload",methods=['POST'])
def upload():
    file = request.files.get('picture')
    file.save("./images/img.png")
    return 'index'

 

posted on 2019-01-14 22:31  IWonderWhy  阅读(184)  评论(0编辑  收藏  举报