zoukankan      html  css  js  c++  java
  • 【3、koa】koa路由

    gitbook之koa路由

    koa路由

    npm install --save koa-router安装路由

    var Koa = require('koa');
    var app = new Koa();
    
    //引入和实例化路由
    var router = require('koa-router')();
    
    //ctx是指上下文context;包含了request和response等信息
    //配置路由
    router.get('/',async(ctx)=>{
        ctx.body = 'hello';
    })
    
    router.get('/news',async(ctx)=>{
        ctx.body = 'news';
    })
    
    router.get('/details',async(ctx)=>{ 
        ctx.body = 'details';
    })
    
    //启动路由
    app
        .use(router.routes())
        .use(router.allowedMethods())       
        //官方建议配置;因为这个是当没有设置享有的时候会根据ctx.status设置响应头
    
    
    app.listen(3001)
    
    //配置路由也可以这样写
    router.get('/',async(ctx)=>{
        ctx.body = 'hello';
    }).get('/news',async(ctx)=>{
        ctx.body = 'news';
    })
    

    获取get传值

    在koa2中GET传值通过request接受,但是接受方法有两种:query和querystring
    • query:返回的是格式化好的参数对象
    • querystring:返回的是请求字符串
    /**
     * 获取get传值
     * http://localhost:3001/details?aid=123
     */
    router.get('/details',async(ctx)=>{
        console.log(ctx.query)      //{ aid: '123' }获取的是对象(推荐)
        console.log(ctx.querystring)    //aid=123   获取的是一个字符串
        console.log(ctx.request.query)      //同上获取query对象
        console.log(ctx.request.querystring)    //同上获取query的字符串
    
        console.log(ctx.request)    //获取请求相关信息
    
        //获取url地址
        console.log(ctx.url)
        console.log(ctx.request.url)
        
        ctx.body = 'details';
    })
    

    动态路由

    /**
     * 动态路由
     * http://localhost:3001/news/23/90
     */
    router.get('/news/:aid/:cid',async(ctx)=>{
        console.log(ctx.params) //获取动态路由的返回值{ aid: '23',cid:90 }
        ctx.body = 'news';
    })
    
  • 相关阅读:
    自动从vss下载代码并编译的脚本
    自动执行Sql脚本的批处理
    编译 SharpDevelop2.2源码 经过
    .net框架源代码批量下载器使用方法
    sql server 解决孤立用户问题
    元数据学习分享
    SQL注入攻击的原理及其防范措施(转)
    .Net Remoting和Web Service浅析(转)
    usercontrol 和 page 的继承
    如何提高页面现实速度
  • 原文地址:https://www.cnblogs.com/smileyqp/p/12675231.html
Copyright © 2011-2022 走看看