2

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

react-native-cli:1.2.0 react-native: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。已加载应用程序模拟器,但不更新 ex 代码中的任何更改。

 <Text>Test</Text> to <Text> OTHER Test</Text>

我已经在 stackoverflow 和 github 中查看了几个问题,但对我没有帮助

4

1 回答 1

1

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

于 2016-12-15T14:40:14.150 回答