我是Node JS的新手,我只是想了解为什么我的代码无法正常工作,我正在尝试将结果从控制器返回到路由。
// my route
router.get('/scratch-card' , authorization , (req, res, next)=>{
let result = recharge.textname();
res.json(result);
});
// my controller
exports.textname = function(req, res, next) {
request.post({
url : 'https://sample.com/api/list_category',
headers : {
"Authorization" : "xxxxxxxx"
},
}, function (error, response, body) {
return { success: true };
});
};
// result
{ success: true }