Flak 解析json資料不完整?
阿新 • • 發佈:2019-05-26
python flask框架解析post資料的坑
當使用Python的flask框架來開發網站後臺,解析前端Post來的資料,通常都會使用request.form來獲取前端傳過來的資料,但是如果傳過來的資料比較複雜,其中右array,而且array的元素不是單個的數字或者字串的時候,就會出現解析不到資料的情況,比如使用下面的js程式碼向python flask傳遞資料
1 $.ajax({ 2 "url":"/test", 3 "method":"post", 4 "data":{ 5 "test":[ 6 {"test_dict":"1"}, 7 {"test_dict":"2"}, 8 {"test_dict":"3"}, 9 ] 10 } 11 } 12 )
當我們使用flask的request.form獲取前端的資料時,發現獲取到的資料是這樣的:
1 ImmutableMultiDict([('test', 'test_dict'), ('test', 'test_dict'), ('test', 'test_dict')])
???我的Post資料呢?給我post到哪裡去了???
這裡我就去網上查解決辦法,但是網上哪些刪麼使用reqeust.form.getlist()方法好像都對我無效,但是又找不到其他的解決方案?怎麼辦?
規範一下自己的請求,在前端請求的時候設定一個Json的請求頭,在flask框架鐘直接使用json.loads()方法解析reqeust.get_data(as_text=True),就可以解析到完整的post引數了!
前端:
1 $.ajax({ 2 "url":"/test", 3 "method":"post", 4 "headers":{"Content-Type": "application/json;charset=utf-8"},//這一句很重要!!! 5 "data":{ 6 "test":[ 7 {"test_dict":"1"}, 8 {"test_dict":"2"}, 9 {"test_dict":"3"}, 10 ] 11 } 12 }
)
python程式碼:
@app.route("/test",methods=["GET","POST"]) def test(): print(json.loads(request.get_data(as_text=True))) return ""
然後看看後臺列印的資訊:
* Serving Flask app "test_flask.py" * Environment: development * Debug mode: off * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit) {'test': [{'test_dict': '1'}, {'test_dict': '2'}, {'test_dict': '3'}]} 127.0.0.1 - - [25/May/2019 22:43:08] "POST /test HTTP/1.1" 200 -