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


TypeScript is.hasValue函數代碼示例

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


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

示例1: hasError

    public hasError() {
        if (hasValue(this._errors)) {
            return this._errors.hasError();
        }

        // istanbul ignore next: Only happens on network errors
        return false;
    }
開發者ID:Jyrno42,項目名稱:tg-resources,代碼行數:8,代碼來源:errors.ts

示例2: mergeConfig

export function mergeConfig(...config: RequestConfig[]): ConfigType {
    const res: RequestConfig = {};

    config.filter((x) => !!x).forEach((opts) => Object.assign(res, opts));

    if (res.statusSuccess) {
        if (!isArray(res.statusSuccess) && hasValue(res.statusSuccess) && isNumber(res.statusSuccess)) {
            res.statusSuccess = [res.statusSuccess];
        }
    }

    if (res.statusValidationError) {
        if (!isArray(res.statusValidationError) && hasValue(res.statusValidationError) && isNumber(res.statusValidationError)) {
            res.statusValidationError = [res.statusValidationError];
        }
    }

    // Expect to be filled by now - we use default config which will fill all the right data
    return res as ConfigType;
}
開發者ID:Jyrno42,項目名稱:tg-resources,代碼行數:20,代碼來源:util.ts

示例3: wrapResponse

 protected wrapResponse(response: Response, error: ResponseError | Error | null = null) {
     // For superagent, all 4XX/5XX response codes also return an error object. Since
     // tg-resources handles these errors in the Resource we need to only send
     // error object here if it is not due to a response code.
     //
     // Network errors in superagent don't have `err.status`
     return new SuperagentResponse(
         response,
         error && ('status' in error) && hasValue(error.status) ? null : error,
     );
 }
開發者ID:Jyrno42,項目名稱:tg-resources,代碼行數:11,代碼來源:resource.ts

示例4: if

    protected createRequest<
        D extends ObjectMap = any
    >(method: AllowedMethods, url: string, query: Query, data: D | null, attachments: Attachments, requestConfig: RequestConfig) {
        let req = request[method](url);

        if (this.config(requestConfig).withCredentials) {
            req = req.withCredentials();
        }

        if (query) {
            req = req.query(query);
        }

        if (hasValue(data)) {
            // If attachments are used construct a multipart request
            if (attachments) {
                attachments.forEach((attachment) => {
                    req = req.attach(attachment.field, attachment.file, attachment.name);
                });

                // Set all the fields
                Object.keys(data).forEach((fieldKey) => {
                    const value = data[fieldKey];

                    // Future: Make this logic configurable
                    if (hasValue(value)) {
                        if (isArray(value)) {
                            // Send arrays as multipart arrays
                            value.forEach((fValue) => {
                                req = req.field(`${fieldKey}[]`, fValue);
                            });
                        } else if (isObject(value)) {
                            // Posting objects as field contents is not supported by superagent
                            //  to work around this we just jsonify them
                            req = req.field(fieldKey, JSON.stringify(value));
                        } else {
                            // Convert values via their toString
                            req = req.field(fieldKey, `${value}`);
                        }
                    }
                });
            } else {
                req = req.send(data);
            }
        }

        return req;
    }
開發者ID:Jyrno42,項目名稱:tg-resources,代碼行數:48,代碼來源:resource.ts

示例5: if

                Object.keys(data).forEach((fieldKey) => {
                    const value = data[fieldKey];

                    // Future: Make this logic configurable
                    if (hasValue(value)) {
                        if (isArray(value)) {
                            // Send arrays as multipart arrays
                            value.forEach((fValue) => {
                                form.append(`${fieldKey}[]`, fValue);
                            });
                        } else if (isObject(value)) {
                            // Posting objects as stringifyed field contents to keep things consistent
                            form.append(fieldKey, JSON.stringify(value));
                        } else {
                            // Convert values via their toString
                            form.append(fieldKey, `${value}`);
                        }
                    }
                });
開發者ID:Jyrno42,項目名稱:tg-resources,代碼行數:19,代碼來源:resource.ts

示例6: hasValue

 .filter((key: string) => hasValue(cookieVal[key]))
開發者ID:Jyrno42,項目名稱:tg-resources,代碼行數:1,代碼來源:util.ts

示例7:

 Object.keys(headers).forEach((key) => {
     if (hasValue(headers)) {
         req.headers.set(key, headers[key]);
     }
 });
開發者ID:Jyrno42,項目名稱:tg-resources,代碼行數:5,代碼來源:resource.ts


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