我想在一个ReactNative组件中嵌入javascript代码而不创建一个全新的组件(我使用的插件并不允许在其外部使用该组件)。
这样的事情:
Home.js
render() {
<View>
embed('otherFile.js')
</View>
}
otherFile.js
<Text>Hello</Text>
注意:我知道组件可以做到这一点,但他们不会在这种情况下工作。
我需要嵌入.js文件,就像将它手动放入Home.js文件一样
在ReactNative中是否可以这样?
答案 0 :(得分:0)
您可以像这样在home.js中使用otherFile.js。
import otherFile from '/path upto otherFile/';
render() {
<View>
<otherFile/>
</View>
}