- 示例脚本
from flask import Flask
# 获取一个实例对象
app = Flask(__name__)
# 1、注册
@app.route('/reg', methods=['get'])
def reg():
return {
'code': 200,
'msg': 'reg ok!'
}
# 2、登录
@app.route('/login', methods=['get'])
def login():
return 'login ok!'
if __name__ == '__main__':
app.run()
- 运行脚本
- 在浏览器上校验
在浏览器地址栏输入URL和定义的路径,回车请求,校验响应数据是否正确。
- 也可使用Python-requests库请求回调测试
import requests
url = 'http://127.0.0.1:5000'
r = requests.get(url + '/reg')
print(r.status_code)
print(r.json())
- 运行脚本
文章来源地址https://www.toymoban.com/news/detail-630950.html
文章来源:https://www.toymoban.com/news/detail-630950.html
到了这里,关于使用Python + Flask搭建web服务的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!