【即时通讯】轮询方式实现

技术栈

实现功能

  • 首次访问页面并发送消息时需要设置昵称
  • 发送内容为空时要提示用户不能发送空消息
  • 前端定时获取消息,然后展示在页面上。

效果展示

  • 首次发送需要设置昵称
  • 发送消息与消息展示
  • 提示用户不能发送空消息

后端接口

  • 发送消息
python 复制代码
DB = []
@router.post("/poll/send/message")
def send_message_api(request: WSGIRequest, message: MessageSchema) -> JsonResponse:
    """
    轮询通讯接收消息接口
    :param request: WSGIRequest
    :param message: MessageSchema
    :return: JsonResponse
    """
    message_info = message.dict()
    DB.append(message_info)
    return JsonResponse({"ok": True})
  • 获取消息
python 复制代码
@router.get("/poll/get/messages")
def get_messages_api(request: WSGIRequest, startIndex: int) -> JsonResponse:
    """
    轮询通讯获取消息接口
    :param request: WSGIRequest
    :param startIndex: int 上次获取聊天记录的最后位置
    """
    context = {
        "data": DB[startIndex:],
        "maxIndex": len(DB)
    }
    return JsonResponse(context)
相关推荐
Q_Q5110082851 天前
python+django/flask的情绪宣泄系统
spring boot·python·pycharm·django·flask·node.js·php
程序设计实验室1 天前
性能提升4倍!使用Granian作为Django项目的ASGI服务器
django·djangostarter
不知更鸟2 天前
前端报错:快速解决Django接口404问题
前端·python·django
4***72132 天前
【玩转全栈】----Django模板语法、请求与响应
数据库·python·django
c***42102 天前
Django视图与URLs路由详解
数据库·django·sqlite
无心水2 天前
【Python实战进阶】1、Python高手养成指南:四阶段突破法从入门到架构师
开发语言·python·django·matplotlib·gil·python实战进阶·python工程化实战进阶
a***13142 天前
vscode配置django环境并创建django项目(全图文操作)
vscode·django·sqlite
星空的资源小屋2 天前
VNote:程序员必备Markdown笔记神器
javascript·人工智能·笔记·django
工业互联网专业2 天前
图片推荐系统_django+spider
python·django·毕业设计·源码·课程设计·spider·图片推荐系统
空影星3 天前
高效追踪电脑使用时间,Tockler助你优化时间管理
python·django·flask