本文整理汇总了TypeScript中hapi-decorators.route函数的典型用法代码示例。如果您正苦于以下问题:TypeScript route函数的具体用法?TypeScript route怎么用?TypeScript route使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了route函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: deleteUserApi
@route('delete', '/{id}')
@config({
auth: 'jwt'
})
deleteUserApi(request: hapi.Request, reply: hapi.IReply) {
reply(boom.notImplemented());
}
开发者ID:csgpro,项目名称:csgpro.com,代码行数:7,代码来源:user.controller.ts
示例2: legacyPost
@route('get', '/post/{id}')
legacyPost(request: hapi.Request, reply: hapi.IReply) {
let postId = Number(request.params['id']);
getPostByPostId(postId).then(post => {
if (!post) {
reply(boom.notFound());
return;
}
let host = request.headers['host'];
let protocol = getProtocolByHost(host);
let postJSON = post.toJSON();
if (postJSON.permalink && postJSON.permalink !== 'undefined') {
let POST_URL = `${protocol}://${host}${postJSON.permalink}`;
reply.redirect(POST_URL);
} else {
reply(boom.notFound());
}
}).catch((err: Error) => {
if (err.name === 'SequelizeConnectionError') {
reply(boom.create(500, 'Bad Connection'));
} else {
reply(boom.create(500, err.message));
}
});
}
开发者ID:csgpro,项目名称:csgpro.com,代码行数:25,代码来源:blog.controller.ts
示例3: deletePostApi
@route('delete', '/{id}')
@config({
auth: 'jwt'
})
async deletePostApi(request: hapi.Request, reply: hapi.IReply) {
let postId = Number(request.params['id']);
try {
await deletePost(postId);
reply({ message: 'Post Deleted' });
} catch (exc) {
if (exc.name === 'SequelizeConnectionError') {
reply(boom.create(503, 'Bad Connection'));
} else {
reply(boom.create(503, exc.message));
}
}
}
开发者ID:csgpro,项目名称:csgpro.com,代码行数:17,代码来源:post.controller.ts
示例4: deleteWebhookApi
@route('delete', '/{id}')
@config({
auth: 'jwt'
})
deleteWebhookApi(request: hapi.Request, reply: hapi.IReply) {
// let webhookId = Number(request.params['id']);
// deleteWebhook(webhookId).then(count => {
// if (count) {
// reply({ message: 'deleted', });
// } else {
// reply({ message: 'zero affected rows' });
// }
// }).catch((err: Error) => {
// if (err.name === 'SequelizeConnectionError') {
// reply(boom.create(503, 'Bad Connection'));
// } else {
// reply(boom.create(503, err.message));
// }
// });
reply(boom.notImplemented());
}
开发者ID:csgpro,项目名称:csgpro.com,代码行数:21,代码来源:webhook.controller.ts
示例5: deleteHandler
@route('delete', '/{id}')
deleteHandler(request: hapi.Request, reply: hapi.ReplyNoContinue) {
reply({ success: true });
}
开发者ID:AbraaoAlves,项目名称:DefinitelyTyped,代码行数:4,代码来源:hapi-decorators-tests.ts
注:本文中的hapi-decorators.route函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论