验证具有不同参数的相同路径-Hapi Js

时间:2018-09-13 10:00:58

标签: hapi

我需要验证具有相同路径但参数不同的相同url的查询参数。

例如:

routes.push({
  method: 'GET',
  path: '/api/xxx/',
  config: {
    description: '',
    notes: '',
    tags: ,

  validate: {
    query: {
      'param1': Joi.string().trim().required(),

},
},
});

我的路径将是:/ api / xxx / param1,/ api / xxx / param2,/ api / xxx / param3,并且每个参数在每个URL中都是必需的。

请让我知道如何使用Hapi js执行强制性参数验证

0 个答案:

没有答案