ExceptionsManager.js:74 Invariant Violation: Invariant Violation: Text strings must be rendered within a <Text> component.
坑
这两天开始着手写RN代码;
上面这个问题特别无语,发现竟然是多了一个{this.props.children}后面多了一个 ' ; ' 号
render() {
return (
<View style={styles.container}>
{this.props.children};
</View>
);
}
对于新写RN 和 JS代码的人,查了有快半小时,郁闷;
发现这个问题基本上都是语法的问题;
有好几哥哥们也遇到过
其主要原因是因为语法错误,找了半天发现多了两个”``“,去掉就没事了。
https://www.jianshu.com/p/b4336a09da5b
报错原因:代码注释问题导致,在标签内部不可以使用//注释
https://www.jianshu.com/p/7ce4522953fd
网友评论