我正在flask-restful
用作 api 服务器并正在构建第PUT
一种方法。使用从烧瓶导入的请求,我可以使用request.form
以下 cURL 命令访问数据而不会出现问题:
curl http://127.0.0.1:5000/api/v1/system/account -X PUT -d username=asdas -d email=asdasd@test.com
我的PUT
方法没有问题地注销用户名和电子邮件:
def put(self):
print 'SystemAccountPut'
print request.form['username']
print request.form['email']
return
输出:
SystemAccountPut
asdas
asdasd@test.com
我有一个使用axios 项目进行 api 调用的应用程序。当 axios 尝试PUT
形成数据时,request.form
不再起作用。这是 axios 正在从 Chrome 开发控制台转换为 cURL 命令的调用:
curl 'http://127.0.0.1:5000/api/v1/system/account' -X PUT -H 'Pragma: no-cache' -H 'Origin: http://127.0.0.1:5000' -H 'Accept-Encoding: gzip, deflate, sdch' -H 'Accept-Language: en-US,en;q=0.8' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36' -H 'Content-Type: application/json;charset=UTF-8' -H 'Accept: application/json, text/plain, */*' -H 'Cache-Control: no-cache' -H 'Referer: http://127.0.0.1:5000/settings' -H 'Connection: keep-alive' --data-binary '{"username":"asdas","email":"asdasd@test.com"}' --compressed
用上面同样的方法request.form['username']
,request.form['email']
都是空的。 request.data
但是里面有表单数据,request.get_json()
也会以 JSON 格式输出表单数据。
我的问题是在这种情况下我应该使用什么来检索表单数据?第一个 curl 命令很干净,request.form
有我需要的数据,但是request.data
是空的。第二个 cURL 命令request.form
断开但确实填充request.data
。在两种 cURL 情况下如何检索表单数据是否有最佳实践?