代码拉取完成,页面将自动刷新
同步操作将从 user_11286808/uniapp聊天app 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import Vue from 'vue'
const serverUrl = 'http://localhost:3000'
// const serverUrl = 'http://10.16.51.78:3000'
const socket = new WebSocket("ws://localhost:8001")
// const socket = new WebSocket("ws://10.16.51.78:8001")
const value = uni.getStorageSync('user')
Vue.prototype.socket = socket
// main中注册用户
socket.onopen = function(e) {
socket.send(
JSON.stringify({
uid: value.id,
type: 1,
nickname: value.name,
msg: '',
bridge: [],
groupId: []
})
);
const pone = new Promise(function(resolve, reject) {
// 所有的群
uni.request({
url: serverUrl + '/group/getAllGroup',
data: {
uid: value.id,
},
method: 'POST',
success: (data) => {
if(data.data.status == 200){
const res = data.data.result
if(res !== null){
resolve(res)
}
}else{
reject()
}
},
});
}).then(function(data) {
if(data.length !== 0){ // 有群
data.forEach((item, index) => {
// 创建群 加入群
if(item !== null){
socket.send(
JSON.stringify({
uid: value.id,
type: 10,
nickname: '',
groupName: item.name,
bridge: [],
groupId: item._id, // 群id只有一个,但是我要用我的userid当群主
})
)
}
})
}
})
};
socket.onclose = function(e) {
console.log("服务器关闭");
};
socket.onerror = function() {
console.log("连接出错");
};
socket.onmessage = function(e) {
let message = JSON.parse(e.data)
// console.log(message)
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。