我有重新加载应用程序的问题,
react-native-cli:1.2.0 反应原生:0.37.0 守望者:4.7.0
index.ios.js文件。
import React from 'react';
import ReactNative, {View,Text} from 'react-native';
import Header from './src/components/header';
const App = () => {
return (
<View>
<Header headerText={'Products '}/>
<Text>Test</Text>
</View>
);
};
ReactNative.AppRegistry.registerComponent('ditrack', ()=> App);
然后运行命令react-native run-ios。 已加载应用程序模拟器,但不更新代码中的任何更改。
<Text>Test</Text> to <Text> OTHER Test</Text>
我已经回顾了stackoverflow和github中的几个问题,但它没有帮助我
答案 0 :(得分:1)
我找到了解决方案。我做了sudo pkill -9 -x fseventsd
然后用sudo运行命令react-native start
。 sudo react-native start