使用koa-router获取请求参数

时间:2016-09-08 10:15:39

标签: node.js parameters get koa koa-router

http://localhost:3000/endpoint?id=83导致404(未找到)。所有其他路线按预期工作。我在这里错过了什么吗?

router
  .get('/', function *(next) {
    yield this.render('index.ejs', {
      title: 'title set on the server'
    });
  })
  .get('/endpoint:id', function *(next) {
    console.log('/endpoint:id');
    console.log(this.params);
    this.body = 'Endpoint return';
  })

关于参数的koa-router文档

//Named route parameters are captured and added to ctx.params.

router.get('/:category/:title', function *(next) {
  console.log(this.params);
  // => { category: 'programming', title: 'how-to-node' }
});

角度控制器中的请求:

 $http.get('/endpoint', {params: { id: 223 }})
    .then(
      function(response){
        var respnse = response.data;
        console.log(response);
      }
  );

2 个答案:

答案 0 :(得分:8)

您的参数格式不正确

用此

替换您的路线
.get('/endpoint/:id', function *(next) {
    console.log(this.params);
    this.body = 'Endpoint return';
  })

请求#查询

.get('/endpoint/', function *(next) {
    console.log(this.query);
    this.body = 'Endpoint return';
  })

请求#PARAM

.get('/endpoint/:id', function *(next) {
    console.log(this.params);
    this.body = 'Endpoint return';
  })

答案 1 :(得分:3)

也许为时已晚,但对于有此问题的人来说,不是关键字this,而是ctx。以下内容,当使用网址进行查询时

http://myweb.com/endpoint/45

 .get('/endpoint/:id', async (ctx, next) => {
     console.log(ctx.params);
     this.body = 'Endpoint return';   })

返回以下json:

{ "id": "45"}

这:

 .get('/endpoint/:id', async (ctx, next) => {
     console.log(ctx.params.id);
     this.body = 'Endpoint return';   })

用相同的网址查询时返回

45

编辑:好消息是两个端点确实不同。您可以拥有两个端点,路由器可以根据您在浏览器中键入的URL在这两个端点之间进行选择。