Invariant Violation: Objects are not valid as a React child (found: object with keys {EmptyDot}). If you meant to render a collection of children, use an array instead.
ReactNativeRenderer-dev.js:17316:23
renderRoot
ReactNativeRenderer-dev.js:17417:6
render 里面含有对象 检查一下 。经常会有<View></View>但是你返回的是{<View></View>}这种结构 就会导致刷新失败。
<View style={styles.page}>
<TouchableWithoutFeedback onPress={this.props.onPress}>
<View style={styles.img}>
<Image
style={styles.img}
resizeMode = {'stretch'}
source={{uri:img}}
/>
</View>
</TouchableWithoutFeedback>
</View>
<View style={styles.page}>
<TouchableWithoutFeedback onPress={this.props.onPress}>
<Image
style={styles.img}
resizeMode = {'stretch'}
source={{uri:img}}
/>
</TouchableWithoutFeedback>
</View>
这两种写法 在iOS 上表征是一样的 但是 如果在安卓上的话 下面那种写法 会出现 滑动的同时触发点击事件的情况。。。。