React Native 全栈开发实战班 - 网络与数据之 websock与服务端交互

1.4 使用 WebSocket 实现实时通信

除了 fetchaxios 这样的 HTTP 请求方式,React Native 还支持 WebSocket,用于实现客户端与服务器之间的实时双向通信。WebSocket 适用于需要实时数据推送的场景,如聊天应用、实时通知、实时数据更新等。

1.4.1 WebSocket 简介

WebSocket 是一种在单个 TCP 连接上进行全双工通信的协议。与传统的 HTTP 请求不同,WebSocket 连接一旦建立,就可以保持打开状态,服务器可以主动向客户端推送数据,而无需客户端不断轮询。

WebSocket 的特点:

  • 全双工通信: 客户端和服务器可以同时发送和接收数据。
  • 实时性: 数据可以实时推送,无需客户端轮询。
  • 轻量级: WebSocket 协议开销小,适合实时通信。
1.4.2 在 React Native 中使用 WebSocket

React Native 提供了 WebSocket API,用于创建和管理 WebSocket 连接。

基本用法:

javascript 复制代码
import React, { useEffect, useState } from 'react';
import { View, Text, StyleSheet } from 'react-native';

const WebSocketExample = () => {
  const [socket, setSocket] = useState(null);
  const [message, setMessage] = useState('');
  const [messages, setMessages] = useState([]);

  useEffect(() => {
    // 创建 WebSocket 连接
    const ws = new WebSocket('wss://echo.websocket.org');

    // 连接打开
    ws.onopen = () => {
      console.log('WebSocket connection established');
      ws.send('Hello Server!');
    };

    // 接收到消息
    ws.onmessage = (e) => {
      console.log('Message received:', e.data);
      setMessages((prevMessages) => [...prevMessages, e.data]);
    };

    // 连接关闭
    ws.onclose = (e) => {
      console.log('WebSocket connection closed:', e.reason);
    };

    // 连接错误
    ws.onerror = (e) => {
      console.error('WebSocket error:', e.message);
    };

    setSocket(ws);

    // 清理资源
    return () => {
      if (ws.readyState === WebSocket.OPEN) {
        ws.close();
      }
    };
  }, []);

  const sendMessage = () => {
    if (socket) {
      socket.send(message);
      setMessage('');
    }
  };

  return (
    <View style={styles.container}>
      <Text style={styles.title}>WebSocket Example</Text>
      <View style={styles.inputContainer}>
        <TextInput
          style={styles.input}
          value={message}
          onChangeText={setMessage}
          placeholder="Type a message"
        />
        <Button title="Send" onPress={sendMessage} />
      </View>
      <View style={styles.messagesContainer}>
        {messages.map((msg, index) => (
          <Text key={index} style={styles.message}>
            {msg}
          </Text>
        ))}
      </View>
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    padding: 20,
    backgroundColor: '#fff',
  },
  title: {
    fontSize: 20,
    fontWeight: 'bold',
    marginBottom: 10,
  },
  inputContainer: {
    flexDirection: 'row',
    alignItems: 'center',
    marginBottom: 10,
  },
  input: {
    flex: 1,
    height: 40,
    borderColor: '#ccc',
    borderWidth: 1,
    paddingHorizontal: 10,
    marginRight: 10,
  },
  messagesContainer: {
    flex: 1,
    borderTopWidth: 1,
    borderColor: '#ccc',
    paddingTop: 10,
  },
  message: {
    fontSize: 16,
    marginBottom: 5,
  },
});

export default WebSocketExample;

解释:

  • 创建 WebSocket 连接:

    • 使用 new WebSocket('wss://echo.websocket.org') 创建一个 WebSocket 连接。
    • wss 表示安全的 WebSocket 连接,使用 TLS 加密。
  • 连接事件:

    • onopen:连接打开时触发,可以发送初始消息。
    • onmessage:接收到消息时触发,更新状态。
    • onclose:连接关闭时触发。
    • onerror:连接出错时触发。
  • 发送消息:

    • 调用 socket.send(message) 发送消息到服务器。
  • 清理资源:

    • 在组件卸载时,检查 WebSocket 连接是否打开,如果打开则关闭连接。

作者简介

前腾讯电子签的前端负责人,现 whentimes tech CTO,专注于前端技术的大咖一枚!一路走来,从小屏到大屏,从 Web 到移动,什么前端难题都见过。热衷于用技术打磨产品,带领团队把复杂的事情做到极简,体验做到极致。喜欢探索新技术,也爱分享一些实战经验,帮助大家少走弯路!

温馨提示:可搜老码小张公号联系导师

相关推荐
follycat1 小时前
ISCTF2024
java·网络·数据库·学习·网络安全·python3.11
盼海1 小时前
UDP/TCP 简述
网络·tcp/ip·udp
luky!1 小时前
构建SSH僵尸网络
网络·python·ssh
群联云防护小杜3 小时前
端对端加密是如何通过SDK防御实现的?
网络·网络协议·安全·web安全·udp
tealcwu3 小时前
【Unity基础】对比Unity中碰撞类与触发类交互机制
unity·游戏引擎·交互
服务端相声演员3 小时前
IOException: Broken pipe与IOException: 远程主机强迫关闭了一个现有的连接
java·服务器·网络
老码沉思录3 小时前
React Native 全栈开发实战班 - 网络与数据之数据缓存策略SWR、Query
网络·react native·缓存
疯狂驼驼4 小时前
(四)P2Link内置HTTP服务,分享本地文件
网络·网络协议·http·内网穿透·p2link
航月4 小时前
scp命令详解
linux·服务器·网络