美文网首页
2019-10-11

2019-10-11

作者: bigCatloveFish | 来源:发表于2019-10-11 19:55 被阅读0次
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 上表征是一样的 但是 如果在安卓上的话 下面那种写法 会出现 滑动的同时触发点击事件的情况。。。。

相关文章

网友评论

      本文标题:2019-10-11

      本文链接:https://www.haomeiwen.com/subject/zsvxmctx.html