feat:http封装 websocket封装

feat/meeting
gaotian 8 months ago
parent a52421b800
commit 498a83aa7e
  1. 70
      meeting/online/index.vue
  2. 20
      request/api.js
  3. 93
      request/index.js
  4. 161
      request/websocket.js

@ -16,10 +16,14 @@
<view class="text-1">正在录音中</view>
<view class="text-2"><span>00:12</span>/02:00:00</view>
</view>
<view class="footer-icon">
<view class="footer-icon" @click="startRecord()" v-if="isRecording == false">
<image class="img" src="/static/image/online/play.png"></image>
<view class="text-1">开始</view>
</view>
<view class="footer-icon" @click="endRecord()" v-if="isRecording == true">
<image class="img" src="/static/image/online/pause.png"></image>
<view class="text-1">结束</view>
</view>
<view class="footer-icon">
<image class="img" src="/static/image/online/stop.png"></image>
<view class="text-1">结束</view>
@ -37,6 +41,9 @@
</template>
<script>
const recorderManager = uni.getRecorderManager();
const innerAudioContext = uni.createInnerAudioContext();
innerAudioContext.autoplay = true;
export default {
components: {
},
@ -44,21 +51,69 @@ export default {
return {
list: [],
popConfig: {
show: true,
show: false,
btnType: 2,
title: "确定结束录音吗?",
CancelText: "在考虑下",
ConfirmText: "结束录音"
}
},
//
recorderManager: null,
innerAudioContext: {},
isRecording: false,
};
},
onLoad() {
// this.recorderManager = uni.getRecorderManager();
// console.log('recorderManager', this.recorderManager);
// innerAudioContext.autoplay = true;
// console.log("uni.getRecorderManager()", uni.getRecorderManager())
// console.log("uni.createInnerAudioContext()", uni.createInnerAudioContext())
// let self = this;
// recorderManager.onStop(function (res) {
// console.log('recorder stop' + JSON.stringify(res));
// self.voicePath = res.tempFilePath;
// });
},
methods: {
confirm(){
confirm() {
this.popConfig.show = false;
},
cancel(){
cancel() {
this.popConfig.show = false;
}
},
startRecord() {
console.log('开始录音');
if (this.isRecording) return;
this.isRecording = true;
// const recorderManager = this.recorderManager;
const options = {
duration: 60000, // ms
sampleRate: 8000, //
numberOfChannels: 1, // channel
encodeBitRate: 44100, //
format: 'mp3', // 'aac' 'mp3'
frameSize: 20
};
recorderManager.start(options);
recorderManager.onStart(() => {
console.log('录音开始');
});
recorderManager.onFrameRecorded((res) => {
//
const { frameBuffer } = res;
console.log(frameBuffer);
});
},
endRecord() {
this.isRecording = false;
// const recorderManager = this.recorderManager;
recorderManager.onStop((res) => {
console.log('录音结束', res.tempFilePath);
});
},
},
};
</script>
@ -166,7 +221,8 @@ export default {
}
}
}
.popClass{
.popClass {
text-align: center;
color: #4B5158;
font-size: 28rpx;

@ -0,0 +1,20 @@
// 引入 request 文件
import request from './index.js'
// GET
export const getDemo = (params) => {
return request({
url: `/getDemo?id=${id}`,
method: 'get',
data: params,
header: {} // 自定义
})
}
// POST
export const PostDemo = (data) => {
return request({
url: `/postDemo`,
method: 'post',
data:data,
})
}

@ -0,0 +1,93 @@
// 全局请求封装 请求地址
const base_url = 'http://localhost:996'
// 请求超出时间
const timeout = 5000
// 需要修改token,和根据实际修改请求头
export default (params) => {
let url = params.url;
let method = params.method || "get";
let data = params.data || {};
let header = {
'Token': uni.getStorageSync('token') || '',
// 'Content-Type': 'application/json;charset=UTF-8',
// 'Authorization': 'Basic c2FiZXI6c2FiZXJfc2VjcmV0',
// 'Tenant-Id': uni.getStorageSync('tenantId') || 'xxx', // avue配置相关
...params.header
}
if (method == "post") {
header = {
'Content-Type': 'application/json'
};
}
return new Promise((resolve, reject) => {
uni.request({
url: base_url + url,
method: method,
header: header,
data: data,
timeout,
success(response) {
const res = response
// 根据返回的状态码做出对应的操作
//获取成功
// console.log(res.statusCode);
if (res.statusCode == 200) {
resolve(res.data);
} else {
uni.clearStorageSync()
switch (res.statusCode) {
case 401:
uni.showModal({
title: "提示",
content: "请登录",
showCancel: false,
success() {
setTimeout(() => {
uni.navigateTo({
url: "/pages/login/index",
})
}, 1000);
},
});
break;
case 404:
uni.showToast({
title: '请求地址不存在...',
duration: 2000,
})
break;
default:
uni.showToast({
title: '请重试...',
duration: 2000,
})
break;
}
}
},
fail(err) {
console.log(err)
if (err.errMsg.indexOf('request:fail') !== -1) {
uni.showToast({
title: '网络异常',
icon: "error",
duration: 2000
})
} else {
uni.showToast({
title: '未知异常',
duration: 2000
})
}
reject(err);
},
complete() {
// 不管成功还是失败都会执行
uni.hideLoading();
uni.hideToast();
}
});
}).catch(() => { });
};

@ -0,0 +1,161 @@
function pickJsonObj(value) {
try {
return JSON.parse(value)
} catch (e) {
return null;
}
}
class WebSocketClient {
constructor(url) {
this.url = url;
this.socket = null;
this.isReconnecting = false;
this.reconnectInterval = 3000; // 重连间隔,单位毫秒
this.heartBeatInterval = 5000; // 心跳间隔,单位毫秒
this.pingTimeoutDuration = 1000; // 超过这个时间,后端没有返回pong,则判定后端断线了。
this.heartBeatTimer = null;
this.destroy = false; // 是否销毁
}
connect() {
this.socket = uni.connectSocket({
url: this.url,
complete: () => { }
});
this.initEventListeners();
}
initEventListeners() {
this.socket.onOpen(() => {
// WebSocket连接已打开
this.onConnected();
this.startHeartBeat();
});
this.socket.onMessage((res) => {
const obj = pickJsonObj(res.data);
if (obj.type === 'pong') {
// 收到pong消息,心跳正常,无需处理
this.resetPingTimeout(); // 重置计时
} else {
// 处理其他消息
this.onMessage(res.data);
}
});
this.socket.onClose((res) => {
// WebSocket连接已关闭
if (this.destroy) {
this.onClosed()
return;
}
this.stopHeartBeat();
if (!this.isReconnecting) {
this.reconnect();
}
});
}
sendMessage(message) {
if (this.socket) {
this.socket.send({
data: message
});
}
}
onMessage(message) {
// 处理收到的消息
console.log('message:', message)
}
startHeartBeat() {
this.heartBeatTimer = setInterval(() => {
this.sendMessage(JSON.stringify({
type: 'ping'
})); // 发送ping消息
this.pingTimeout = setTimeout(() => {
// 未收到pong消息,尝试重连...
this.reconnect();
}, this.pingTimeoutDuration);
}, this.heartBeatInterval);
}
stopHeartBeat() {
if (this.heartBeatTimer) {
clearInterval(this.heartBeatTimer);
}
}
reconnect() {
this.isReconnecting = true;
setTimeout(() => {
this.onReconnect();
this.connect();
this.isReconnecting = false;
}, this.reconnectInterval);
}
resetPingTimeout() {
clearTimeout(this.pingTimeout); // 重置计时
}
close() {
this.destroy = true;
this.stopHeartBeat();
if (this.socket) {
this.socket.close();
this.socket = null;
}
}
/**
* 重连时触发
*/
onReconnect() {
console.log('尝试重连...')
}
/**
* 连接成功时触发
*/
onConnected() {
console.log('WebSocket连接已打开');
}
/**
* 断开时触发
*/
onClosed() {
console.log('已断开连接')
}
}
export default WebSocketClient;
// websocket 使用
// import WebSocketClient from '@/utils/websocket.js'
// // 创建WebSocket实例
// ws.value = new WebSocketClient('ws://这里填写你的服务地址');
// // 连接WebSocket
// ws.value.connect();
// // 接收消息时触发
// ws.value.onMessage = (value) => {
// const obj = JSON.parse(value)
// if (obj.type === 'message') {
// list.value.push({
// time: new Date().toLocaleString(),
// value: obj.value
// })
// }
// }
// // 重连时触发
// ws.value.onReconnect = () => {
// netStatus.value = 2;
// }
// // 连接成功后触发
// ws.value.onConnected = () => {
// netStatus.value = 1;
// }
// // 关闭后触发(直接销毁了,不会继续重连)
// ws.value.onClosed = () => {
// netStatus.value = 0;
// }
Loading…
Cancel
Save