我想使用promises,但我有一个回调API,格式如下:
1. DOM加载或其他一次性事件:
window.onload; // set to callback
...
window.onload = function() {
};
2.平原回调:
function request(onChangeHandler) {
...
}
request(function() {
// change happened
...
});
3.节点样式回调(“nodeback”):
function getStuff(dat, callback) {
...
}
getStuff("dataParam", function(err, data) {
...
})
4.具有节点样式回调的整个库:
API;
API.one(function(err, data) {
API.two(function(err, data2) {
API.three(function(err, data3) {
...
});
});
});
如何在promises中使用API,我该如何“宣传”它?
如何将现有的回调API转换为承诺?
德玛西亚99
哆啦的时光机
相关分类