发送res json以回复请求[nodeJs]

时间:2018-05-03 15:40:05

标签: json node.js request

我想在返回请求时发送res.json,在Api中使用

    api.app.get('/url', function(req, res) {

    request({
            url: "http://localhost:3001/myUrl", method: 'GET',
            headers: {
                'Content-Type': "application/json",
                'Accept': "application/json",

            }
        }

        , function (err, stdout, body) {
            console.log(err)
            console.log(body)

            res.json({success:true, data:"raed"})
        })
});

res.json({success:true, data:"raed"})未执行。 但是两个console.log,都成功执行了。 请问有解决方案吗?

0 个答案:

没有答案