如何从json格式的promise对象中获取数据

时间:2019-07-25 18:10:48

标签: javascript promise google-api

我现在尝试使用提取来计算与google api的距离,我将数据转换为Promise对象中的json和fromatat中的json,这是我的代码,也是我现在所获取内容的屏幕截图

到目前为止,我一直在尝试,但是每次都会出现未定义的错误。

fetch(proxyurl + re)
            .then(function(response) {

                console.log (response.json());
            });

我想获取源,目标时间和距离的数据

这是屏幕截图https://i.stack.imgur.com/Dz51R.png

1 个答案:

答案 0 :(得分:0)

尝试像这样更新您的提取方法:

fetch('https://api-endpoint.com')
    .then(response => response.json())
    .then(data => {
       console.log(data);
    });

具有github用户端点的演示:https://codesandbox.io/s/prod-bush-wqn70