简化响应JSON诺言

时间:2019-01-18 00:26:19

标签: javascript reactjs react-native

在控制台中,我可以看到带有值数组的Promise。但是第二个".then"链中的JSON变量中没有任何值。

我添加了一个console.log(JSON),但是我得到了一个e.nativereponse对象。

有人可以解释一下我如何获得第一个**.then(**链中的值

.then((response: HttpClientResponse): Promise<JSON> => {
           console.log(response.json());
            return response.json();
          } console.log(JSON);)
          .then((responseJSON: JSON): void => {

            var claimsTable = this.domElement.getElementsByClassName("azFuncClaimsTable")[0];
            for (var key in responseJSON) {
              console.log(key);

            }
          });

0 个答案:

没有答案