python 中 res.json() 的等效函数是什么
what is the equivalent function of res.json() in python
"I have to implement a web hook for api.ai which takes json as output from the web hook"。如何在节点 [res.json(...)] 中提供等价于 python 的异步输出。我需要知道 res.json() 等价于 python.
Python 附带的只是 json。它将数据序列化为字符串。然后可以读回该字符串。大多数语言支持 json.
import json
data = [1, 2]
str_data = json.dumps(data) # "[1, 2]"
value = json.loads(str_data)
print(value == data)
"I have to implement a web hook for api.ai which takes json as output from the web hook"。如何在节点 [res.json(...)] 中提供等价于 python 的异步输出。我需要知道 res.json() 等价于 python.
Python 附带的只是 json。它将数据序列化为字符串。然后可以读回该字符串。大多数语言支持 json.
import json
data = [1, 2]
str_data = json.dumps(data) # "[1, 2]"
value = json.loads(str_data)
print(value == data)