當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Deferred.resolve函數代碼示例

本文整理匯總了TypeScript中dojo/Deferred.resolve函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript resolve函數的具體用法?TypeScript resolve怎麽用?TypeScript resolve使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了resolve函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: fetchWorkunit

export function fetchWorkunit() {
    var deferred = new Deferred();
    var pageInfo = this.getPageInfo();
    if (pageInfo.isWorkunit()) {
        var wu = ESPWorkunit.Get(pageInfo.wuid);
        wu.refresh(true).then(function (response) {
            deferred.resolve(wu);
        });
    } else {
        deferred.resolve(null);
    }
    return deferred.promise;
}
開發者ID:AttilaVamos,項目名稱:HPCC-Platform,代碼行數:13,代碼來源:ESPResource.ts

示例2: fetchQuery

export function fetchQuery() {
    var deferred = new Deferred();
    var pageInfo = this.getPageInfo();
    if (pageInfo.isQuery()) {
        var query = ESPQuery.Get(pageInfo.querySet, pageInfo.queryID);
        query.refresh().then(function (response) {
            deferred.resolve(query);
        });
    } else {
        deferred.resolve(null);
    }
    return deferred.promise;
}
開發者ID:AttilaVamos,項目名稱:HPCC-Platform,代碼行數:13,代碼來源:ESPResource.ts

示例3: call

export function call(query) {
    var deferred = new Deferred();
    var pageInfo = this.getPageInfo();
    if (pageInfo.isQuery()) {
        this.callExt(pageInfo.querySet, pageInfo.queryID, query).then(function (response) {
            deferred.resolve(response);
            return response;
        });
    } else if (pageInfo.isWorkunit()) {
        var wu = ESPWorkunit.Get(pageInfo.wuid);
        wu.fetchAllNamedResults(0, 10).then(function (response) {
            deferred.resolve(response);
            return response;
        });
    } else {
        deferred.resolve(null);
    }
    return deferred.promise;
}
開發者ID:AttilaVamos,項目名稱:HPCC-Platform,代碼行數:19,代碼來源:ESPResource.ts

示例4:

import * as Deferred from 'dojo/Deferred';

/* Deferred's work a lot like ES6 Promises except that they expose then
 * resolution at the instance level, instead of the promise handler */

/* Here we specify a new deferred along with the resolution type.  If
 * none is supplied then it gets inferred as any type */
const dfd = new Deferred<string>();

const next = dfd.then(function(value) {
    /* in here, value is inferred to be of type string */
    return value.indexOf('foo'); /* the return type gets inferred to the next
                           promise in the chain */
}).then(function(value) {
    /* so in here, the value is now inferred to be type number */
    return value;
});

/* here, resolve will only take type string, as supplied when we created the
 * new deferred */
dfd.resolve('foobar');
開發者ID:ca0v,項目名稱:typings,代碼行數:21,代碼來源:main.ts

示例5: Deferred

/* Here we specify a new deferred along with the resolution type.  If
 * none is supplied then it gets inferred as any type */
const dfd = new Deferred<string>();

const next = dfd.then(function(value) {
	/* in here, value is inferred to be of type string */
	return value.indexOf('foo'); /* the return type gets inferred to the next
									promise in the chain */
}).then(function(value) {
	/* so in here, the value is now inferred to be type number */
	return value;
});

/* here, resolve will only take type string, as supplied when we created the
 * new deferred */
dfd.resolve('foobar');

/* Here, returning a promise will properly infer the resolved type */

const deferred1 = new Deferred();
const deferred2 = new Deferred<number>();

deferred1.then((value) => {
	return deferred2.promise;
}).then((value) => {
	console.log(value.toFixed());
});

deferred1.resolve();
deferred2.resolve(123.456);
開發者ID:cdschmitz,項目名稱:typings,代碼行數:30,代碼來源:main.ts


注:本文中的dojo/Deferred.resolve函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。