当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Application.get方法代码示例

本文整理汇总了TypeScript中express-serve-static-core.Application.get方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Application.get方法的具体用法?TypeScript Application.get怎么用?TypeScript Application.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在express-serve-static-core.Application的用法示例。


在下文中一共展示了Application.get方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1:

        const errorHandler = ( err: any, req: Request, res: Response, next: NextFunction ) => {
            if ( this.app.get( 'env' ) === 'development' ) {
                this.debugErrors( err );
                this.debugErrors( req.headers );
            }

            res.status( err.status || 500 ).json( err );
        };
开发者ID:flowg,项目名称:Locutus,代码行数:8,代码来源:api.express.ts

示例2: APIError

        this.app.use( ( req: Request, res: Response, next: NextFunction ) => {
            let errParams: APIErrorParams = {
                url:     req.baseUrl + req.url,
                method:  req.method,
                status:  404,
                message: 'Not Found: it may be a bad URL or bad method',
                env:     this.app.get( 'env' )
            };
            let err: any                  = new APIError( errParams );

            next( err );
        } );
开发者ID:flowg,项目名称:Locutus,代码行数:12,代码来源:api.express.ts

示例3:

        const errorHandler = ( err: any, req: Request, res: Response, next: NextFunction ) => {
            let stack: string = '';
            if ( this.app.get( 'env' ) === 'development' ) {
                this.debugErrors( err );
                this.debugErrors( req.headers );
                stack = err.stack;
            }

            res.status( err.status || 500 );
            res.render( 'error', {
                message: err.message,
                status:  err.status,
                stack:   stack
            } );
        };
开发者ID:flowg,项目名称:Locutus,代码行数:15,代码来源:root.express.ts

示例4: configureRouting

    /**
     * Configuring app routing
     */
    configureRouting() {
        // Mounting the sup-app dedicated to serving the API
        this.app.use( '/api', apiExpressApp );

        // Delegating routing to Angular router for non API routes
        this.app.get( '/*', ( req: Request, res: Response, next: NextFunction ) => {
            res.render( 'index' );
        } );

        // If you get here, no route has matched : catch 404 and forward to error handlers
        this.app.use( ( req: Request, res: Response, next: NextFunction ) => {
            let err: any = new Error( 'Not Found' );
            err.status   = 404;

            next( err );
        } );
    }
开发者ID:flowg,项目名称:Locutus,代码行数:20,代码来源:root.express.ts

示例5: configureViewEngine

 /**
  * Telling where to look for Views and
  * which engine to use for .html files
  */
 configureViewEngine() {
     this.viewsFolder = ( this.app.get( 'env' ) === 'development' ) ? 'Angular' : 'Angular/aot';
     this.app.set( 'views', path.join( __dirname, this.viewsFolder ) );
     this.app.set( 'view engine', 'html' );
     this.app.engine( 'html', require( 'ejs' ).renderFile );
 }
开发者ID:flowg,项目名称:Locutus,代码行数:10,代码来源:root.express.ts


注:本文中的express-serve-static-core.Application.get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。