博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows store app promise
阅读量:6700 次
发布时间:2019-06-25

本文共 1402 字,大约阅读时间需要 4 分钟。

Promise.any ---- 参数是一个promise的数组。any的作用就是 promise 数组中任意一个 promise 执行完毕,就会执行 done内的函数

(function () {    "use strict";    WinJS.Binding.optimizeBindingReferences = true;    var app = WinJS.Application;    var activation = Windows.ApplicationModel.Activation;    app.onactivated = function (args) {        if (args.detail.kind === activation.ActivationKind.launch) {            if (args.detail.previousExecutionState !== activation.ApplicationExecutionState.terminated) {                var promiseArr = [];                var url = 'http://files.cnblogs.com/Mr-Joe/a.js';                var url2 = 'http://files.cnblogs.com/Mr-Joe/a2.js';                var success = function (text) {                    var a = JSON.parse(text.responseText);                }                var getData = function (url) {                    promiseArr.push(WinJS.xhr({                        url: url                    }))                }                getData(url2);                getData(url);                WinJS.Promise.any(promiseArr).done(function (result) {                    var primiseIndex = result.index;  //the index of  fullfilled promise.                });            }        }        args.setPromise(WinJS.UI.processAll());    };    app.start();})();

Promise.join 

Promise.any ---- 参数是一个promise的数组。any的作用就是 promise 数组所有的 promise 执行完毕,才会执行 done内的函数

 

 

转载于:https://www.cnblogs.com/Mr-Joe/p/3193813.html

你可能感兴趣的文章
关于 MySQL 8.0 新特性“隐藏索引”的一点思考
查看>>
使用Spring Data Redis操作Redis(二)
查看>>
通过QQ或者QQ帮助别人学习Lync之二
查看>>
【翻译】Ext JS——高效的编码风格指南
查看>>
Cisco c3560三层交换机配置
查看>>
统一沟通-技巧-10-Lync-公网域名-Go Daddy
查看>>
SystemCenter2012SP1实践(33)离线申请证书与远程桌面证书
查看>>
华为IT解决方案高举高打
查看>>
如何快速的提高自己:一切取决于你自己
查看>>
蔺永华:虚拟化你的大数据应用
查看>>
惠普渠道重新回归
查看>>
针对Redis队列的理解,实例操作
查看>>
解析惠普混合交付云
查看>>
检测您的CPU是否支持RemoteFX(SLAT二级地址转换)
查看>>
RHEL5.9下ntop监控部署详解
查看>>
infortrend ESDS RAID6 数据恢复过程
查看>>
mysql中如何实现row_number
查看>>
Mandiant对APT1组织的***行动的情报分析报告
查看>>
cocos2d-x 3.x取消dumpCachedTextureInfo代之以getCachedTextureInfo
查看>>
专访:混合云的发展趋势
查看>>