1 Star 0 Fork 0

蔡蔡/fastapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ws_chat.html 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
蔡蔡 提交于 2024-05-26 19:27 . 登录跳转
<!DOCTYPE html>
<html>
<head>
<title>Chat</title>
<meta charset="UTF-8" />
</head>
<body>
<h1>聊天室[你叫<span id="user"></span></h1>
<input type="text" name="message" autocomplete="off"/><button>发送</button>
<!-- 通话列表 -->
<ul id='history'></ul>
<script>
const message_inp = document.querySelector('input[name=message]')
const send_btn = document.querySelector('button');
const history = document.querySelector('#history');
const user = document.querySelector('#user');
const username = location.search.substring(1);
user.innerHTML = decodeURI(username);
// 原生websocket
ws = new WebSocket(`ws://127.0.0.1:8123/chat`)
// 客户端主动发送数据
send_btn.onclick = ()=>{
// 使用websocket发送数据
let message = message_inp.value;
ws.send(JSON.stringify({
username,
message
}))
history.innerHTML += `<li style="text-align: left">${username}: ${message}</li>`
}
// 客户端监听服务端主动发送的数据
ws.onmessage = (message)=>{
console.log("接受到服务端推送的数据:", message.data)
history.innerHTML += `<li style="text-align: right">${message.data} :ChatGPT</li>`
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/beijing1230/fastapp.git
git@gitee.com:beijing1230/fastapp.git
beijing1230
fastapp
fastapp
master

搜索帮助