如何在 Fastify 服务器中解析来自 URL 的查询字符串参数?

How to parse querystring parameter from URL in Fastify server?

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

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

我想从上面的 URL 中获取 "user" 和 "name" 值。我现在的代码是这样的:

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

我想获取 "user" 和 "name" 的值,然后将这些值传递给 getCompanyUsers 函数。

感谢任何帮助。

谢谢

您可以使用 request.query

访问查询字符串

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

 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
  }
})