Flask 第三天 get post 获取参数
2019-06-17 本文已影响0人
恬恬i阿萌妹O_o
ctrl + shift + u 大小写切换
request 请求
values 可以用get和post取参数
args 取get参数 account = request.args.get('account')
form 取post参数 account = request.form.get('account')
cookie
cookie 的过期时间是关闭浏览器即失效
设置过期时间 max_age 指定秒数后过期
expires 指定日期/时间后过期