我想在我的EnterName
文件Navigator
中使用的另一个文件夹中有一个名为index.ios
的组件。当我将EnterName
放在同一个文件中时,我没有遇到任何问题,但是当我尝试从另一个文件导入它时,我得到了:
Element type is invalid: expected a string (for built-in components
or a class/function (for composite components) but got: undefined.
Check the render method of `Navigator`
我尝试了两种不同的导入EnterName组件的方法,但都没有工作:
import {EnterName} from './App/Components/EnterName';
var EnterName = require('./App/Components/EnterName');
下面是一些使用Navigator
并尝试使用其他文件夹EnterName
的文本的文本(当在同一文件中声明EnterName时,这种方法有效。)
render() {
return (
<Navigator
initialRoute={{name: 'Name entry', index: 0}}
renderScene={(route, navigator) =>
<EnterName
name={route.name}
onForward={() => {
var nextIndex = route.index + 1;
navigator.push({
name: 'Scene ' + nextIndex,
index: nextIndex,
});
}}
onBack={() => {
if (route.index > 0) {
navigator.pop();
}
}}
/>
}
/>
);
}
}
而且,如果你想看到EnterName文件,它就在这里:
import React, {
Text,
View,
Component,
Image,
StyleSheet
} from 'react-native';
class EnterName extends Component {
render() {
return (
<View style={styles.center}>
<View style={styles.flowRight}>
<TextInput style={styles.inputName}
placeholder="Enter your name"
textAlign="center"
onChangeText={(text) => this.setState({text})}
//value={this.state.text}
/>
<TouchableHighlight style={styles.button}
underlayColor='#99d9f4'>
<Text style={styles.buttonText}> Go </Text>
</TouchableHighlight>
</View>
</View>
)
}
}
// The stylesheet is here, and then below it I have:
module.export = EnterName;
你能帮我弄清楚如何模块化我的代码吗?
编辑:我刚忘了&#34; s&#34;在module.exports的末尾。看起来像导出默认类_classname extends Component {是要走的路。
答案 0 :(得分:22)
你在module.export
结束时错过了's'。它应该是module.exports
。在这种情况下,导入应该是
import EnterName from './App/Components/EnterName
您也可以使用
代替module.exportsexport default class EnterName extends Component
https://developer.mozilla.org/en/docs/web/javascript/reference/statements/import