from flask import Flask, make_response
app = Flask(__name__)
# config对应同目录下的config.py(文件中定义DEBUG = True)
app.config.from_object('config')
# 默认设置/hello/会自动将/hello重定向到/hello/
@app.route('/hello', methods=["GET"])
def hello():
headers = {
# 默认为text/html
'content-type': 'text/plain',
# 设置跳转链接
'location': 'http://alanhou.org'
}
response = make_response('Hello World!', 301)
response.headers = headers
return response
# response 的另一种写法
# return 'Hello World!', 301, headers
# return 'Hello World!'
# @app.route("/profile/<int:uid>") int用于指定数据类型,uid 作为一个变量
# url设置的另一种方法
# app.add_url_rule('/hello', view_func=hello)
# 主入口文件时执行
if __name__ == '__main__':
# 生产环境中使用nginx+uwsgi
app.run(host='0.0.0.0', debug=app.config['DEBUG'], port=8080)