本文整理汇总了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;
}
示例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;
}
示例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,
);
}
示例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;
}
示例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}`);
}
}
});
示例6: hasValue
.filter((key: string) => hasValue(cookieVal[key]))
示例7:
Object.keys(headers).forEach((key) => {
if (hasValue(headers)) {
req.headers.set(key, headers[key]);
}
});