0
let post =
{
method: 'POST',
path: '/posts/new/{postType}',
handler: (request, reply) =>{
//when params is text
if (request.params.postType == "text")
{
return reply("successfully uploaded text post");
}
//when params is image
else (request.params.postType == "image")
{
//call proxy uri to save the image
/*proxy:
{
uri: proxyUri + '/post/image', //call proxy uri to save the image
passThrough: true,
acceptEncoding: false,
}*/
}
}
Как условно вызывать прокси-сервер на основе параметров маршрута, поэтому я использую один пост api для публикации текста, изображения, vides и т. Д.?Как условно вызывать прокси-сервер на основе параметров маршрута?