本文整理汇总了TypeScript中@feathersjs/feathers.Application.lookup方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Application.lookup方法的具体用法?TypeScript Application.lookup怎么用?TypeScript Application.lookup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@feathersjs/feathers.Application
的用法示例。
在下文中一共展示了Application.lookup方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
const _run = () => {
const lookup = app.lookup(path);
// No valid service was found, return a 404
// just like a REST route would
if (lookup === null) {
return Promise.reject(new errors.NotFound(`Service '${path}' not found`));
}
const { service, params: route = {} } = lookup;
// Only service methods are allowed
// @ts-ignore
if (paramsPositions[method] === undefined || typeof service[method] !== 'function') {
return Promise.reject(new errors.MethodNotAllowed(`Method '${method}' not allowed on service '${path}'`));
}
const position = paramsPositions[method];
const query = methodArgs[position] || {};
// `params` have to be re-mapped to the query
// and added with the route
const params = Object.assign({ query, route, connection }, connection);
methodArgs[position] = params;
// @ts-ignore
return service[method](...methodArgs, true);
};
示例2: it
it('can look up with id', () => {
const result = app.lookup('/my/service/1234');
assert.strictEqual(result.service, app.service('/my/service'));
assert.deepStrictEqual(result.params, {
__id: '1234'
});
});