传数组参数:xhr.send(JSON.stringify(Array))

  const xhr = new XMLHttpRequest();
  xhr.open('POST', '/test', true);
  // 设置请求头要放在 open 和 send 之间
  xhr.setRequestHeader('content-type', 'application/json');
  xhr.onreadystatechange = () => {};
  xhr.send(JSON.stringify([1, 2, 3]));

 

posted on 2021-08-10 16:04  W1N9s  阅读(3185)  评论(0编辑  收藏  举报