开发者问题收集

React Native:可能存在未处理的承诺拒绝

2016-08-09
422388

我收到以下错误:

Possible unhandled promise rejection (id:0: Network request failed)`

这是承诺代码,我看不出这里有什么问题,有什么想法吗?

return fetch(url)
    .then(function(response){
      return response.json();
    })
    .then(function(json){
      return {
        city: json.name,
        temperature: kelvinToF(json.main.temp),
        description: _.capitalize(json.weather[0].description)
      }
    })
    .catch(function(error) {
    console.log('There has been a problem with your fetch operation: ' + error.message);
    });
}

编辑

我添加了一个 catch 并得到了更具体的错误:

You passed an undefined or null state object; instead, use forceUpdate(). index.ios.js:64 undefined

这是 index.ios.js 代码。网址很好,并给了我正确的 json 数据。我可以通过控制台日志看到 region.latituderegion.longitude 均可在 Api(region.latitude, region.longitude) 中使用。但是 data 未定义。

我仍然不确定发生了什么,为什么 data 有问题以及为什么它未定义。

// var React = require('react-native'); --deprecated

// updated
import React from 'react';

// updated
import {
  AppRegistry,
  MapView,
  View,
  Text,
  StyleSheet,
} from 'react-native';

/*
var {
  AppRegistry,
  MapView,
  View,
  Text,
  StyleSheet
} = React;
*/ // -- depreciated 


var Api = require('./src/api');

var Weather = React.createClass({
  getInitialState: function() {
    return {
      pin: {
        latitude: 0,
        longitude: 0
      },
      city: '',
      temperature: '',
      description: ''
    };
  },
  render: function() {
    return <View style={styles.container}>
      <MapView
        annotations={[this.state.pin]}
        onRegionChangeComplete={this.onRegionChangeComplete}
        style={styles.map}>
      </MapView>
      <View style={styles.textWrapper}>
        <Text style={styles.text}>{this.state.city}</Text>
        <Text style={styles.text}>{this.state.temperature}</Text>
        <Text style={styles.text}>{this.state.description}</Text>
      </View>
    </View>
  },
  onRegionChangeComplete: function(region) {
    this.setState({
      pin: {
        longitude: region.longitude,
        latitude: region.latitude
      }
    });

    Api(region.latitude, region.longitude)
      .then((data) => {
        console.log(data);
        this.setState(data);
      });
  }
});


        

var styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'stretch',
    backgroundColor: '#F5FCFF'
  },
  map: {
    flex: 2,
    marginTop: 30
  },
  textWrapper: {
    flex: 1,
    alignItems: 'center'
  },
  text: {
    fontSize: 30
  }
});

AppRegistry.registerComponent('weather', () => Weather);
3个回答

api 中的 catch 函数应该返回一些可以通过 React 类中的 Api 调用处理的数据,或者抛出新的错误,应该使用 React 类代码中的 catch 函数捕获该错误。后一种方法应该是这样的:

return fetch(url)
.then(function(response){
  return response.json();
})
.then(function(json){
  return {
    city: json.name,
    temperature: kelvinToF(json.main.temp),
    description: _.capitalize(json.weather[0].description)
  }
})
.catch(function(error) {
console.log('There has been a problem with your fetch operation: ' + error.message);
 // ADD THIS THROW error
  throw error;
});

然后在您的 React 类中:

Api(region.latitude, region.longitude)
  .then((data) => {
    console.log(data);
    this.setState(data);
  }).catch((error)=>{
     console.log("Api call error");
     alert(error.message);
  });
while1
2016-08-09

您应该将 catch() 添加到 API 调用的末尾。当您的代码命中 catch 时,它不会返回任何内容,因此当您尝试在其上使用 setState() 时,数据未定义。错误消息实际上也会告诉您这一点 :)。

hasseio
2016-08-09

在此添加我的经验,希望可以帮助到某些人。

我在 Linux 上的 Android 模拟器上遇到了同样的问题,并且使用了热重载。代码与接受的答案一致,并且模拟器可以访问互联网(我需要一个域名)。

手动刷新应用程序使其正常运行。所以也许这与热重载有关。

stilllife
2017-01-22