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,
}*/
}
}
私はポストテキスト、イメージ、ビデオなどに1つの残りのAPIを使用するため、条件付きでルートパラメータに基づいてプロキシサーバーを呼び出しますか?経路パラメータに基づいて条件付きでプロキシサーバを呼び出すにはどうすればよいですか?