为什么我在运行以下代码时收到错误消息“无法获取未定义或空引用的属性‘完成’” ?
new WinJS.Promise(initFunc).then(function () {
/* do something that returns a promise */
}).done(function () {
/* do something that returns a promise */
}).then(function () {
/* do something that returns a promise */
}).done(function () {
});