如何在https.request / fetch之外获取响应

时间:2019-05-11 12:49:36

标签: node.js

以下是我的代码,其中有一个nodejs Google函数,并且正在调用REST API。但是在下面的代码片段中,我得到了响应,但是需要从try-catch中获取响应,以便我可以进行进一步的处理。

exports.postFunction = (req, res) => {

    try{
        fetch('https://someapi', {
            method: 'post',
            body: JSON.stringify(req.body),
            headers: {'Content-Type': 'application/json'},
        })
        .then(res => res.json())
        .then(json => console.log("****"+JSON.stringify(json)));
      }
      catch(err) {
        console.error("999999999"+err);
      }
    console.log("Here I should be able to get response of the invoked rest api");

}

1 个答案:

答案 0 :(得分:0)

创建一个变量并分配响应。

Get-ChildItem