jq中使用promise封装ajax
Posted nanacln
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq中使用promise封装ajax相关的知识,希望对你有一定的参考价值。
let ajax=function(url, param, type = ‘GET‘) const promise = new Promise(function(resolve, reject) $.ajax( type: type, url: url, data: param, dataType: ‘json‘, success(res) resolve(res) , error(res) reject(‘响应错误‘) // reject(res.statusText) ) ) return promise // 使用示例 ajax(‘http://wh.xhd.cn/api/content/list.jspx‘,channelIds: 1).then(res=> console.log(res) )
以上是关于jq中使用promise封装ajax的主要内容,如果未能解决你的问题,请参考以下文章