为什么我的标题是小写的?

时间:2016-11-29 20:25:20

标签: aurelia aurelia-framework aurelia-fetch-client

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。

任何避免这种行为的想法?

0 个答案:

没有答案