kbone使用Promise封装的请求在开发者工具中无法显示回调内容
kbone使用Promise封装的请求在开发者工具中无法显示回调内容。 封装的请求函数:
const http = (url, data, authorization, method, showToast) => {
return new Promise(function (resolve, reject) {
kboneAPI.request({
url: `${url}`,
method: method ? method : 'POST',
data: data,
header: header,
success: function (res) {
resolve(res.data);
},
fail: function (res) {
reject({ error: '网络错误', code: 0 });
},
})
})
}
export default http;
页面中使用:
http("/api", param, undefined).then((results) => {
//results 开发者工具无法进入这里
})