0
我試圖返回node.js的另一個站點的POST請求的身體,但下面的函數不返回任何的Node.js的request.POST返回undefined
// returns "undefined"
mysqlVerify = (socialclub_id, session_id) => {
request({
url: 'http://myapi.site/VerifyUser',
method: 'post',
form: {
socialclub_id: socialclub_id,
session_id: session_id
}
}, (error, response, body) => {
if(error) {
return false // this isnt returning
} else {
console.log(response.statusCode, body)
return body == "1" // this isnt returning
}
})
}
其他網站正在接收帖子請求,並且當我使用console.log
時,我也收到了正確的回覆,但回報不起作用。我究竟做錯了什麼?