热门标签
更多>
搜索结果
查询Tags标签: rej,共有 2条记录-
【原创】Promise异步编程
show me the codefunction getPromise(cbk){return (new Promise(cbk)); }getPromise(function (res,rej) {res("suc1") //只会执行一个,并把参数传递到catch或者thenrej("err1") }).catch(function(err){console.log(err,1) }).then(function (res)…
2022/8/12 1:27:58 人评论 次浏览 -
【微信小程序】封装request请求模块/wx小程序手动封装Promise
// 封装请求模块 const Promise = require(./Promise.js);const baseUrl = http://127.0.0.1:8080/;function request(method, url, data) {return new Promise((res,rej) => {let header = {content-type: application/json };wx.request({url: baseUrl + url,method:…
2022/8/8 1:23:14 人评论 次浏览