我正在尝试使用Python requests
库将包括越南语Unicode字符串的JSON数据发布到服务器。
r = requests.post(my_url, json={"text": "bảo vệ môi trường biển"}, headers=my_headers)
但这是服务器收到的文本
'{"code":200,"msg":"OK","resp":{"id":148054,"text": "b\\\\u1ea3o v\\\\u1ec7 m\\\\u00f4i tr\\\\u01b0\\\\u1eddng bi\\\\u1ec3n\\"}}'
我该如何以其原始字符发布文本
'{"code":200,"msg":"OK","resp":{"id":148054,"text": "bảo vệ môi trường biển"}}'
这是针对Python 3.7.3和请求2.21.0