将Socket.io与React Native一起使用并无法正常工作

时间:2018-10-14 19:21:45

标签: node.js react-native websocket socket.io

我正在尝试完成一项作业,并且需要使用websocket。我使用react native作为客户端和node.js作为服务器。但是,即使我尝试了Web上的所有解决方案建议,也无法正常工作。

客户

import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import SocketIO from 'socket.io-client';

const connectionConfig = {
  jsonp: false,
  reconnection: true,
  reconnectionDelay: 100,
  reconnectionAttempts: 100000,
  transports: ['websocket'], // you need to explicitly tell it to use websockets
 };

export default class App extends React.Component {

   constructor() {
    super();
    this.socket = SocketIO('http://localhost:3000',connectionConfig);
    this.socket.on('connect', () => {
         console.log('connected to server');
    });
 }

服务器

const express = require('express');
const http = require('http');
const socketIO = require('socket.io');

const port = 3000;
var app = express();
var server = http.createServer(app);
var io = socketIO(server);

server.listen(port, () => {
    console.log(port, 'is up');
});

io.on('connection', (socket) => {
    console.log('new user connected');

    socket.on('disconnect', () => {
        console.log('User was disconnected');
    });
});

这是我使用的版本,

  

socket.io:2.1.1

     

表达:4.16.4

     

socket.io-client:2.1.1

     

博览会:30.0.1

我要感谢您的所有努力。

1 个答案:

答案 0 :(得分:2)

我找到了解决我问题的方法。

  

this.socket = SocketIO('http://localhost:3000',connectionConfig);

我从函数调用中省略了connectionConfig,并更改了将本地主机写入其中的方式。

  

this.socket = SocketIOClient('http://192.168.xxxx:3000');

它现在在Android和iOS上均可使用。