我在python中有以下请求
import requests, json, io
cookie = {}
payload = {"Name":"abc"}
url = "/test"
file = "out/test.json"
fi = {'file': ('file', open(file) )}
r = requests.post("http://192.168.1.1:8080" + url, data=payload, files=fi, cookies=cookie)
print(r.text)
它将文件和表单字段发送到后端。如何使用 Angular $http 做同样的事情(发送文件 + 表单字段)。目前,我确实喜欢这样,但也不确定如何发送文件。
var payload = {"Name":"abc"};
$http.post('/test', payload)
.success(function (res) {
//success
});