我在一个非常简单的react-native应用程序上遇到错误。
15 |render () {
16 | return (
> 17 | <NavigatorIOS
| ^
18 | style={styles.container}
19 | initialRoute={{
20 | title: 'Sample',
无论我在这里返回什么,都会失败。
反应版本:^ 15.1.0 react-native版本:^ 0.31.0
有什么想法吗?
答案 0 :(得分:0)
如果您使用React.createClass({...})
使用render: function() {}
,但如果您使用的是ES6语法class Component extends React.Component
,则可以使用render() { ... }