React-native不会在模拟器中重新加载ios应用程序

时间:2016-12-05 10:42:43

标签: ios reactjs native reload watchman

我有重新加载应用程序的问题,

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中的几个问题,但它没有帮助我

1 个答案:

答案 0 :(得分:1)

我找到了解决方案。我做了sudo pkill -9 -x fseventsd然后用sudo运行命令react-native startsudo react-native start