本文整理汇总了TypeScript中angular2/src/core/facade/async.PromiseCompleter.resolve方法的典型用法代码示例。如果您正苦于以下问题:TypeScript PromiseCompleter.resolve方法的具体用法?TypeScript PromiseCompleter.resolve怎么用?TypeScript PromiseCompleter.resolve使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类angular2/src/core/facade/async.PromiseCompleter
的用法示例。
在下文中一共展示了PromiseCompleter.resolve方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
xhr.onload = function() {
// responseText is the old-school way of retrieving response (supported by IE8 & 9)
// response/responseType properties were introduced in XHR Level2 spec (supported by IE10)
var response = isPresent(xhr.response) ? xhr.response : xhr.responseText;
// normalize IE9 bug (http://bugs.jquery.com/ticket/1450)
var status = xhr.status === 1223 ? 204 : xhr.status;
// fix status code when it is 0 (0 status is undocumented).
// Occurs when accessing file resources or on Android 4.1 stock browser
// while retrieving files from application cache.
if (status === 0) {
status = response ? 200 : 0;
}
if (200 <= status && status <= 300) {
completer.resolve(response);
} else {
completer.reject(`Failed to load ${url}`, null);
}
};
示例2: BaseException
TimerWrapper.setTimeout(() => {
c.resolve(null);
throw new BaseException('ccc');
}, 0);
示例3: macroTask
macroTask(() => { _zone.run(() => { completerB.resolve(null); }); }, 500);
示例4:
_zone.runOutsideAngular(() => {
_log.add('scheduling a microtask');
completer.resolve(null);
});
示例5: microTask
microTask(() => {
c.resolve(null);
throw new BaseException("ddd");
});