使用fetch代替ajax请求 post传递方式

Posted 悔创阿里-杰克马

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用fetch代替ajax请求 post传递方式相关的知识,希望对你有一定的参考价值。

let postData = {a:‘b‘};
fetch(‘http://data.xxx.com/Admin/Login/login‘, {
  method: ‘POST‘,
  mode: ‘cors‘,
  credentials: ‘include‘,
  headers: {
    ‘Content-Type‘: ‘application/x-www-form-urlencoded‘
  },
  body: JSON.stringify(postData)
}).then(function(response) {
  console.log(response);
});

 

以上是关于使用fetch代替ajax请求 post传递方式的主要内容,如果未能解决你的问题,请参考以下文章

javascript ajax 调用通过仅使用 POST 方法的 fetch 调用:奇怪的行为是 post 后跟 get plus 再次请求所有资源?

为啥使用fetch

Ajax中get请求和post请求

ajax、fetch 跨域携带cookie

fetch 和 jquery ajax 有啥区别?

ajax,get和post的区别