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


TypeScript types.isDefined函數代碼示例

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


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

示例1: fetch

 fetch("https://httpbin.org/get").then(function (response) {
     // Argument (response) is Response!
     // var all = response.headers.getAll();
     // >> (hide)
     TKUnit.assert(types.isDefined(response.headers), "response.headers should be defined! Actual result is: " + response.headers);
     done(null);
     // << (hide)
 }).catch(failOnError(done));
開發者ID:NathanWalker,項目名稱:NativeScript,代碼行數:8,代碼來源:fetch-tests.ts

示例2: function

export var test_fetch_defined = function () {
    TKUnit.assert(types.isDefined((fetch)), "Method fetch() should be defined!");
};
開發者ID:NathanWalker,項目名稱:NativeScript,代碼行數:3,代碼來源:fetch-tests.ts

示例3: _createImageSourceFromSrc

    /**
     * @internal
     */
    _createImageSourceFromSrc(): void {
        var value = this.src;
        if (types.isString(value)) {
            value = value.trim();
            this.imageSource = null;
            this["_url"] = value;

            // this._setValue(SVGImage.isLoadingProperty, true);
            this.isLoading = true;

            var source = new definition.ImageSourceSVG();
            var imageLoaded = () => {
                let currentValue = this.src;
                if (!types.isString(this.src) || value !== currentValue.trim()) {
                    return;
                }
                this.imageSource = source;
                // imageSourceProperty.nativeValueChange(this, source);
                // this._setValue(SVGImage.isLoadingProperty, false);
                this.isLoading = false;
            }
            //WRONG IMplementation, it can't load data uri, just base xml encode
            if (utils.isDataURI(value)) {
                var base64Data = value.split(",")[1];
                if (types.isDefined(base64Data)) {
                    if (this.loadMode === SYNC) {
                        source.loadFromBase64(base64Data);
                        imageLoaded();
                    } else if (this.loadMode === ASYNC) {
                        source.fromBase64(base64Data).then(imageLoaded);
                    }
                }
            }
            else if (definition.isFileOrResourcePath(value)) {
                if (value.indexOf(utils.RESOURCE_PREFIX) === 0) {
                    let resPath = value.substr(utils.RESOURCE_PREFIX.length);
                    if (this.loadMode === SYNC) {
                        source.loadFromResource(resPath);
                        imageLoaded();
                    } else if (this.loadMode === ASYNC) {
                        this.imageSource = null;
                        source.fromResource(resPath).then(imageLoaded);
                    }
                } else {
                    if (this.loadMode === SYNC) {
                        source.loadFromFile(value);
                        imageLoaded();
                    } else if (this.loadMode === ASYNC) {
                        this.imageSource = null;
                        source.fromFile(value).then(imageLoaded);
                    }
                }
            } else {
                this.imageSource = null;
                definition.fromUrl(value).then((r) => {
                    if (this["_url"] === value) {
                        this.imageSource = r;
                        // this._setValue(SVGImage.isLoadingProperty, false);
                        this.isLoading = false;
                    }
                });
            }
        }
        else if (value instanceof definition.ImageSourceSVG) {
            // Support binding the imageSource trough the src property
            this.imageSource = value;
            // this._setValue(SVGImage.isLoadingProperty, false);
            this.isLoading = false;

        }
        else {
            this.imageSource = definition.fromNativeSource(value);
            // this._setValue(SVGImage.isLoadingProperty, false);
            this.isLoading = false;
        }
    }
開發者ID:peoplewareDo,項目名稱:nativescript-svg,代碼行數:79,代碼來源:svg.common.ts


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