欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python解析json方式

程序员文章站 2024-01-12 15:10:16
...
@algorithm.route("/search", methods=["POST", "GET"])
def show_index():
    # as_text=True 接收json内容
    json_str = json.loads(request.get_data(as_text=True))
    target_text = ''
    list = None
    for key, value in json_str.items():
        if key=="key":
                target_text = value
        else:
                list = value

    # 定义字典    
    corpus_text = {}
    for item in list:
            corpus_text[item["index"]]=item["field"]

python解析json方式

相关标签: python