全栈:路由器

路由

路由是指路由器从一个接口上收到数据包,根据数据包的目的地址进行定向并转发到另一个接口的过程。

 

ps:注册路由时 路由名不要跟静态文件名冲突  不然会优先访问静态资源 
例:
router.get('/ajax1', controller.home.ajax1);
router.get('/ajax1', controller.home.fn);

 

class HomeController extends Controller {
  async index() {
    const { ctx } = this;
    ctx.body = 'hi, egg';
  }
  async ajax1(){
      this.ctx.body=["hello","123"]
  }
 
  async fn(){
      this.ctx.body="hello"
  }
}

打印:

hello,123

 

 

 

posted on 2022-08-19 19:44  香香鲲  阅读(13)  评论(0编辑  收藏  举报