我需要验证具有相同路径但参数不同的相同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执行强制性参数验证