【问题标题】:Return JSON response from Python function从 Python 函数返回 JSON 响应
【发布时间】:2023-04-01 17:09:01
【问题描述】:

def addData():
    res = []
    class InfoData:
        def __init__(x, ID, number):
            x.ID = ID
            x.number = number

    for i in range(0, 10):
        res.append(InfoData("A",i))
        
    return json.dumps(res)
    #I got "Object of type InfoData is not JSON serializable"

我使用 Flask Python 制作了一个 API,上面有一个基本功能。

如何从这个函数返回 JSON 响应?

【问题讨论】:

    标签:
    python
    flask-restful