0
url에 배열 값을 사용하려고합니다. 그래서 나는 Joi 검증으로 이것을 가지고있다.Joi for Hapi가 배열의 한 요소를 배열로 변환하지 않습니다.
entity: Joi.array().allow(['person','location','organization']).unique().single().default(['person'])
내가 할 경우 잘 작동이
http://something.com/query?entity=person&person=organization
그것은 내가이
을한다면 나는, 그러나request
console.log(request.query.entity) // ['person', 'organization']
에서 값을 출력 이렇게하면 배열로 entity
을 본다
http://something.com/query?entity=person
난 내가 entity
에 대한 http://something.com/query?entity=person
이 ['person']
http://something.com/query?entity=['person '] – Red