1 回答

TA貢獻(xiàn)1807條經(jīng)驗(yàn) 獲得超9個(gè)贊
我無法從我的請(qǐng)求中打印或讀取 json 數(shù)據(jù)。POST請(qǐng)求為application/json,發(fā)送的json有效。知道為什么“get_json”不存在嗎?
from werkzeug.wrappers import Request, Response
import json
@Request.application
def application(request):
data = request.get_json(force=True)
print(data)
return Response('Data Received')
if __name__ == '__main__':
from werkzeug.serving import run_simple
run_simple('localhost', 5000, application)
替換request.get_json為request.get_data以字符串形式返回 json ( d'{\n"example": "here"\n}')
我已確認(rèn)我的 Werkzeug 安裝是最新的。
添加回答
舉報(bào)