当前位置:  开发笔记 > 编程语言 > 正文

如何使用koa-bodyparser在koa中获取查询字符串?

如何解决《如何使用koa-bodyparser在koa中获取查询字符串?》经验,为你挑选了1个好方法。

app.js

var bodyParser = require('koa-bodyparser');

app.use(bodyParser());
app.use(route.get('/objects/', objects.all));

objects.js

module.exports.all = function * all(next) {
  this.body = yield objects.find({});
};

这适用于获取所有对象.但是我想通过查询参数获取,类似于localhost:3000/objects?city = Toronto如何在我的objects.js中使用"city = Toronto"?



1> saadq..:

您可以使用this.query访问所有查询参数.

例如,如果请求来自网址,/objects?city=Toronto&color=green您将获得以下内容:

function * routeHandler (next) {
  console.log(this.query.city) // 'Toronto'
  console.log(this.query.color) // 'green'
}

如果要访问整个查询字符串,可以this.querystring改用.您可以在文档中阅读更多相关信息.


编辑:使用Koa v2,您将使用ctx.query而不是this.query.

推荐阅读
mobiledu2402852413
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有