我正在使用 npm“同构获取”来发送请求。我遇到的问题是我无法设置请求头的内容类型。
我设置了 application/json 的内容类型,但是请求标头被设置为 text/platen。
import 'isomorphic-fetch';
sendRequest(url, method, body) {
const options = {
method: method,
headers:{'content-type': 'application/json'},
mode: 'no-cors'
};
options.body = JSON.stringify(body);
return fetch(url, options);
}
当我在浏览器中检查请求时,内容类型为 o:
content-type:text/plain;charset=UTF-8
有人能解释一下为什么我不能设置这个属性吗?