2016-10-25 208 views
0

我嘗試使用SocketIO在ReactNative通過此鏈接 https://github.com/facebook/react-native/issues/4393
iOS上它的工作非常好,但Android的它不能正常工作 結果連接Socket對象 作者:假插座IO與ReactNative

指數。 android.js

window.navigator.userAgent = 'react-native';//'react-native'; 
    const io = require('socket.io-client/socket.io'); 
    export default class testApp extends Component { 
     componentWillMount(){ 
     this.socket = io.connect('http://localhost:3000', { 
         jsonp: false, 
         transports: ['websocket'] 
     }); 
     // Socket Object connected:false 
    } 
    componentDidMount(){ 
     console.log(this.socket) 
     this.socket.on('connect',() => { 
      console.log('ready to emit') 
      console.log('connected!'); 
     }); 
    } 

的package.json

"react-native": "0.35.0", 
"socket.io-client": "^1.5.1" 

我找不到類似的問題 我錯過了什麼?

編輯: 我不知道我能與ReactNative本地主機測試socketIO但它的工作時,我的IOS模擬器測試

edited2: 是我的錯,不能本地環境服務器 上進行測試,但它的作品上IOS不是android 有人可以解釋爲什麼?

回答