对Promise + 原生请求的封装
个人封装 不喜勿喷,请大家指点点
url (请求地址)
datas(参数)
type (请求类型)不必传 type = ‘get’ (es6写法不传默认值)
const getJson = function(url,datas,type = ‘get’){
const p = new Promise(function(resolve , reject){
var xmlHttp = new XMLHttpRequest();
xmlHttp.open(type,url)
if(type =
原创
2021-03-12 17:37:08 ·
178 阅读 ·
0 评论