自定义响应信息
1. 返回元组方式
使用元组,返回自定义的响应信息
@app.route('/index')
def index():
# 1. 使用元组,返回自定义的响应信息
# 响应体 状态码 响应头
# return "index page", 400, [('itcast', 'python'), ("city", "shenzhen")]
# return "index page", 400, {'itcast':'python', "city":"shenzhen"}
# 状态码可以自定义
# return "index page", 666, {'itcast':'python', "city":"shenzhen"}
# return "index page", "666 itcast status", {'itcast':'python', "city":"shenzhen"}
# 2. 使用make_response 来构造响应信息
resp = make_response('index page 2')
resp.status = "999 itcast" # 设置状态码
resp.headers['city'] = 'sz' # 设置响应头
return resp
网友评论