本文整理汇总了TypeScript中hapi-decorators.get函数的典型用法代码示例。如果您正苦于以下问题:TypeScript get函数的具体用法?TypeScript get怎么用?TypeScript get使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了get函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: subscriptionConfirmed
@get('/subscription/confirmed')
subscriptionConfirmed(request: hapi.Request, reply: hapi.IReply) {
let pageContent = '<div class="callout primary">You will begin receiving updates next Monday.</div>';
reply.view('page', { title: 'Subscription Confirmed', pageContent });
}
示例2: index
@get('/{page?}')
@config({ plugins: { sitemap: { include: true } } })
index(request: hapi.Request, reply: hapi.IReply) {
let promises: any[] = [];
let page = (!isNaN(Number(request.params['page']))) ? Number(request.params['page']) : 1;
let limit = 10;
let offset = page <= 1 ? 0 : (page * limit) - limit;
promises.push(getTopics());
promises.push(getPostsByCategory('blog', true, undefined, offset, limit));
Promise.all(promises).then(data => {
reply.view('category', {
title: 'Blog',
description: '',
posts: data[1],
topics: data[0],
isBlog: true,
pagination: {
basePath: '/blog',
pageCount: Math.ceil(data[1].count / limit),
page
}
});
}).catch((err: Error) => {
if (err.name === 'SequelizeConnectionError') {
reply(boom.create(500, 'Bad Connection'));
} else {
reply(boom.create(500, err.message));
}
});
}
示例3: readPost
@get('/{year}/{month}/{slug}')
readPost(request: hapi.Request, reply: hapi.IReply) {
let postSlug: string = request.params['slug'];
getPost(postSlug, 'blog').then(post => {
if (!post) {
reply(boom.notFound());
return;
}
let host = request.headers['host'];
let protocol = getProtocolByHost(host);
let postJSON = post.toJSON();
let POST_URL = `${protocol}://${host}${postJSON.permalink}`;
reply.view('post', {
title: postJSON.title,
post: postJSON,
POST_URL,
POST_ID: postJSON.id,
isBlogPost: true
}, { layout: 'hero-layout' });
}).catch((err: Error) => {
if (err.name === 'SequelizeConnectionError') {
reply(boom.create(500, 'Bad Connection'));
} else {
reply(boom.create(500, err.message));
}
});
}
示例4: getStoriesApi
@get('/')
@config({
auth: 'jwt'
})
getStoriesApi(request: hapi.Request, reply: hapi.IReply) {
let lastIndex: number;
if (request.params['lastIndex'] && !isNaN(Number(request.params['lastIndex']))) {
lastIndex = Number(request.params['lastIndex']);
}
let limit: number;
if (request.params['offset'] && !isNaN(Number(request.params['offset']))) {
limit = Number(request.params['limit']);
}
let offset: number;
if (request.params['offset'] && !isNaN(Number(request.params['offset']))) {
offset = Number(request.params['offset']);
}
let sortOrder: any = request.params['sortOrder'];
let search = request.params['search'];
getStories('active', search, sortOrder, offset, limit).then(stories => {
reply({ data: stories });
}).catch((err: Error) => {
if (err.name === 'SequelizeConnectionError') {
reply(boom.create(503, 'Bad Connection'));
} else {
reply(boom.create(503, err.message));
}
});
}
示例5: topic
@get('/{topic}/{page?}')
async topic(request: hapi.Request, reply: hapi.IReply) {
let topicSlug: string = request.params['topic'];
let page = (!isNaN(Number(request.params['page']))) ? Number(request.params['page']) : 1;
let limit = 10;
let offset = page <= 1 ? 0 : (page * limit) - limit;
try {
let topics = await getTopics();
let topic = await getTopic(topicSlug);
let posts = await getPostsByTopic(topicSlug, true, 'DESC', offset, limit);
let totalPosts = posts['count'];
reply.view('category', {
title: topic.getDataValue('topic'),
description: '',
posts,
topics,
pagination: {
basePath: `/topic/${topicSlug}`,
pageCount: Math.ceil(totalPosts / limit),
page
}
});
} catch (err) {
if (err.name === 'SequelizeConnectionError') {
reply(boom.create(500, 'Bad Connection'));
} else {
reply(boom.create(500, err.message));
}
}
}
示例6: subscriptionThankYou
@get('/subscription/thank-you')
subscriptionThankYou(request: hapi.Request, reply: hapi.IReply) {
let pageContent = `<div class="callout primary">We need to confirm your email address.<br><br>
To complete the subscription process, please click the link in the email we just sent you.</div>`;
reply.view('page', { title: 'Thank You', pageContent });
}
示例7: index
@get('/')
@config({ plugins: { sitemap: { include: true } } })
index(request: hapi.Request, reply: hapi.IReply) {
reply.view(pageView('contact'),
{
title: 'Contact Us',
description: ''
},
{ layout: 'hero-layout' });
}
示例8: download
@get('/{token?}')
async download(request: hapi.Request, reply: hapi.IReply) {
let token: string = request.params['token'];
try {
let file = await getDownloadRequest(token);
reply.redirect(file);
} catch (err) {
reply(boom.create(500, err || err.message));
}
}
示例9: index
@get('/')
@config({ plugins: { sitemap: { include: true } } })
index(request: hapi.Request, reply: hapi.IReply) {
let headerImage = AboutController.getSeasonalHeader();
reply.view(pageView('about'),
{
title: 'About CSG Pro',
description: '',
header: headerImage
},
{ layout: 'hero-layout' });
}
示例10: getHandler
@get('/')
@config({
auth: false
})
@cache({
expiresIn: 42000
})
@validate({
payload: false
})
getHandler(request: hapi.Request, reply: hapi.ReplyNoContinue) {
reply({ success: true });
}