5

我是 fastify 的新手,但我有一个 fastify 服务器正在运行。我想解析查询字符串,例如:

http://fake.com/?user=123&name=ali

我想从上面的 URL 中获取“用户”和“名称”值。我当前的代码是这样的:

fastify.route({
  method: 'GET',
  url: '/',
  handler: async (request, reply) => getCompanyUsers(request, reply, services)
});

我想获取“用户”和“名称”的值,然后将这些值传递给 getCompanyUsers 函数。

任何帮助表示赞赏。

谢谢

4

2 回答 2

5

您可以使用访问查询字符串request.query

你可以在这里查看官方文档 https://github.com/fastify/fastify/blob/main/docs/Reference/Request.md

于 2019-07-31T14:32:55.237 回答
2
 fastify.route({
  method: 'GET',
  url: '/',
 schema: {
   // request needs to have a querystring with a `name` parameter
   querystring: {
    name: { type: 'string' }
  }
   },
   handler: async (request, reply) => {
   // here you will get request.query if your schema validate
  }
})
于 2019-10-17T07:23:57.393 回答