flask 指定输出状态码(flask 9)

@app.route('/')
def hello():
return 'a',201

返回201状态码

重定向到百度

return 'a',302,{'Location','http://www.baidu.com'}

也可以

return redirect('http://www.baidu.com')

重定向到hello视图

return redirect(url_for('hello'))

返回404

@app.route('/404')
def not_found():
abort(404)

你可能感兴趣的:(flask 指定输出状态码(flask 9))