gpt4 book ai didi

python - 从 Python 函数返回 JSON 响应

转载 作者:行者123 更新时间:2023-12-04 02:27:31 27 4
gpt4 key购买 nike

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 响应?

最佳答案

按照这种方式进行。

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).__dict__)

return json.dumps(res)

关于python - 从 Python 函数返回 JSON 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66469774/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com