在 DART 语言中,如何将 POST 请求的 Content-Type 指定为
multipart/form-data
我的 DART 代码是:
sendDatas(dynamic data) {
final req = new HttpRequest();
req.onReadyStateChange.listen((Event e) {
if (req.readyState == HttpRequest.DONE &&
(req.status == 200 || req.status == 0)) {
window.alert("upload complete");
}
});
req.open("POST", "/upload");
req.send(data);
}
我正在使用文件进行 POST