使用react-native版本:0.22.2 app在RCTSRWebSocket中崩溃

时间:2016-04-04 05:58:02

标签: react-native

Hai我使用的是原生最新版本0.22.2,这里我的应用程序崩溃并显示如下

enter image description here

这是我在index.ios.js中编写的代码:

var QRreader = React.createClass({
    getInitialState: function() {
        return {
            text: 'http://facebook.github.io/react-native/',
            record:{"name":"hussian","place":"vskp","age":"23"}
        };
    },
    render: function() {
        return (
            <View style={styles.container}>
                <TextInput
                    style={styles.input}
                    onChangeText={(text) => this.setState({text: text})}
                    value={this.state.text}
                />
                <QRCode
                    value={this.state.text}
                    size={200}
                    bgColor='red'
                    fgColor='white'/>
            </View>
        );
    }
});

任何人都可以给我一些建议,问题是什么以及如何解决它,非常感谢

1 个答案:

答案 0 :(得分:0)

将&amp; dev = false添加到您的js包的url链接,例如:
http://localhost:8081/start.index.ios.bundle?platform=ios&dev=false

这个问题在这里报道:
https://github.com/facebook/react-native/issues/5198