js content-type

let xhr = new XMLHttpRequest()

xhr.open('POST', 'http://xx.aa.cn/home/moban/ssds11')

xhr.setRequestHeader('Content-Type', 'application/json')

xhr.send(
    JSON.stringify({
      username: 'alex'
    })
  );

xhr.onreadystatechange = function () {
    if (xhr.readyState === 4 || xhr.status === 200) {
        console.log(xhr.responseText);
    }
}

content-type 不能修改传输数据类型 只能声明一下而已

posted @ 2023-01-06 16:53  newmiracle宇宙  阅读(179)  评论(0编辑  收藏  举报