當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript hapi-decorators.get函數代碼示例

本文整理匯總了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 });
    }
開發者ID:csgpro,項目名稱:csgpro.com,代碼行數:7,代碼來源:blog.controller.ts

示例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));
         }
     });
 }
開發者ID:csgpro,項目名稱:csgpro.com,代碼行數:32,代碼來源:blog.controller.ts

示例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));
         }
     });
 }
開發者ID:csgpro,項目名稱:csgpro.com,代碼行數:27,代碼來源:blog.controller.ts

示例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));
         }
     });
 }
開發者ID:csgpro,項目名稱:csgpro.com,代碼行數:29,代碼來源:story.controller.ts

示例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));
            }
        }
    }
開發者ID:csgpro,項目名稱:csgpro.com,代碼行數:31,代碼來源:topic.controller.ts

示例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 });
    }
開發者ID:csgpro,項目名稱:csgpro.com,代碼行數:9,代碼來源:blog.controller.ts

示例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' });
 }
開發者ID:csgpro,項目名稱:csgpro.com,代碼行數:10,代碼來源:contact.controller.ts

示例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));
        }
    }
開發者ID:csgpro,項目名稱:csgpro.com,代碼行數:11,代碼來源:download.controller.ts

示例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' });
 }
開發者ID:csgpro,項目名稱:csgpro.com,代碼行數:12,代碼來源:about.controller.ts

示例10: getHandler

 @get('/')
 @config({
     auth: false
 })
 @cache({
     expiresIn: 42000
 })
 @validate({
     payload: false
 })
 getHandler(request: hapi.Request, reply: hapi.ReplyNoContinue) {
     reply({ success: true });
 }
開發者ID:AbraaoAlves,項目名稱:DefinitelyTyped,代碼行數:13,代碼來源:hapi-decorators-tests.ts


注:本文中的hapi-decorators.get函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。