let headers = new Headers();
headers.append('Accept', '*/*');
headers.append('Content-Type', 'multipart/form-data');
let payload = await this.http.fetch(path, {
method: 'post',
body: item,
headers: headers
}).then(response => response.json())
.catch(err => err);
我正在创建这段代码以将文件发布到服务器。在发出请求时,这会将标题从Content-Type转换为content-type,Accept to accept,这会导致我出现问题,我使用的是Aurelia + TypeScript。
任何避免这种行为的想法?