Flask-简单应用

非常简单  可以很快的上手

 

官网:https://dormousehole.readthedocs.io/en/latest/index.html#id3

 

from flask import Flask, request, jsonify
import json

app = Flask(__name__)
app.debug = True


@app.route('/getData1/', methods=['post'])
def getData1():
    if not request.data:  # 检测是否有数据
        return ('fail')

    data = request.data.decode('utf-8')
    # 获取到POST过来的数据,因为我这里传过来的数据需要转换一下编码。根据晶具体情况而定
    dataJson = json.loads(data)
    # 把区获取到的数据转为JSON格式。
    print(dataJson)
    return jsonify(dataJson)
    # 返回JSON数据。

@app.route('/getData2/', methods=['post'])
def getData2():
    if not request.data:  # 检测是否有数据
        return ('fail')

    data = request.data.decode('utf-8')
    # 获取到POST过来的数据,因为我这里传过来的数据需要转换一下编码。根据晶具体情况而定
    dataJson = json.loads(data)
    # 把区获取到的数据转为JSON格式。
    print(dataJson)
    return jsonify(dataJson)
    # 返回JSON数据。


if __name__ == '__main__':
    app.run(host='127.0.0.1', port=1234)
# 这里指定了地址和端口号。

 

posted @ 2021-06-30 10:31  野兽Gentleman  阅读(61)  评论(0编辑  收藏  举报