私は Node.js を初めて使用し、小さな問題で立ち往生しています。私の API は JSON を返していますが、データまたは応答で JSON を確認できません。
router.get('/search/:id', function(req, res){client.get("http://localhost:3000/api/search/5600678e1c76b4680e0d6544", function(data, response){
console.log(data);
console.log(response);
res.render('test', {test: data, user : req.user , title : 'Home'});
});
});