码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-08-18 13:15:40      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:url   The   com   fetch   col   log   function   dmi   传递方式   

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传递方式

标签:url   The   com   fetch   col   log   function   dmi   传递方式   

原文地址:https://www.cnblogs.com/l8l8/p/9496507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!