当前位置: 首页>>代码示例>>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;未经允许,请勿转载。