本文整理汇总了TypeScript中@tg-resources/is.isObject函数的典型用法代码示例。如果您正苦于以下问题:TypeScript isObject函数的具体用法?TypeScript isObject怎么用?TypeScript isObject使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了isObject函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: if
Object.keys(routes).forEach((key) => {
if (routes[key] instanceof Router) {
routeMap[key] = routes[key];
} else if (isString(routes[key])) {
routeMap[key] = createResourceFactory(resourceKlass, (routes[key] as string), null);
} else if (isResourceTuple(routes[key])) {
const [apiEndpoint, resourceConfig] = routes[key] as ResourceTuple;
routeMap[key] = createResourceFactory(resourceKlass, apiEndpoint, resourceConfig);
} else if (isResourceConstructorObject(routes[key])) {
const { apiEndpoint, ...resourceConfig } = routes[key] as ResourceConstructorObject;
routeMap[key] = createResourceFactory(resourceKlass, apiEndpoint, resourceConfig);
} else if (isObject(routes[key])) {
routeMap[key] = createRouter(routes[key], null, resourceKlass, createResourceFactory);
} else {
const types = [
'string',
'[string, config]',
'{apiEndpoint: string, ..config}',
'{ ...any }',
];
throw new Error(`Unknown type used "${key}", one of [${types.join(',')}] is allowed`);
}
});
开发者ID:Jyrno42,项目名称:tg-resources,代码行数:28,代码来源:createRouter.ts
示例2: serializeCookies
export function serializeCookies(cookieVal: ObjectMap<string | null>) {
/* istanbul ignore else: safeguard */
if (isObject(cookieVal)) {
// istanbul ignore next: Tested in package that implement Resource
return Object.keys(cookieVal)
.filter((key: string) => hasValue(cookieVal[key]))
.map((key: string) => cookie.serialize(key, (cookieVal[key] as string)))
.join('; ');
}
/* istanbul ignore next: safeguard */
return null;
}
开发者ID:Jyrno42,项目名称:tg-resources,代码行数:13,代码来源:util.ts
示例3: test
test('mutateResponse functionally works', async () => {
const res = new Resource('/hello', {
apiRoot: hostUrl,
mutateResponse(data: any, raw?: Response) {
return {
data,
poweredBy: isObject(raw) ? raw.headers['x-powered-by'] : null,
};
},
});
await expectResponse(res.fetch(), { data: { message: 'world' }, poweredBy: 'Express' });
});
开发者ID:Jyrno42,项目名称:tg-resources,代码行数:13,代码来源:functional-fetch.test.ts
示例4: 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
示例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) => {
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}`);
}
}
});
开发者ID:Jyrno42,项目名称:tg-resources,代码行数:20,代码来源:resource.ts
示例6: isArray
export const isResourceTuple = (value: any): value is ResourceTuple => (
isArray(value) && value.length === 2 && typeof value[0] === 'string' && isObject(value[1])
);
开发者ID:Jyrno42,项目名称:tg-resources,代码行数:3,代码来源:createRouter.ts
示例7: isObject
export const isResourceConstructorObject = (value: any): value is ResourceConstructorObject => (
isObject(value) && 'apiEndpoint' in value
);
开发者ID:Jyrno42,项目名称:tg-resources,代码行数:3,代码来源:createRouter.ts
注:本文中的@tg-resources/is.isObject函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论