Vue使用websocket进行心跳连接
2021-05-28 20:01
标签:img ase obj 连接失败 生成二维码 ast 连接错误 ant tostring Vue使用websocket进行心跳连接 标签:img ase obj 连接失败 生成二维码 ast 连接错误 ant tostring 原文地址:https://www.cnblogs.com/javalinux/p/14768957.htmlVue页面template
>
/>{{charId}}
Vue页面js
>
其他js
/**
* 返回uuid
*/
s.uuid = function () {
function S4() {
return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
}
return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4());
}
import QRCode from ‘qrcode‘
/**
* body 二维码的内容
* 生成二维码的 画布id
*/
s.qrcode = function(body,id){
var canvas = document.getElementById(id)
QRCode.toCanvas(canvas, body, function (error) {
if (error){
console.error(error)
} else{
console.log(‘success!‘);
}
})
}
部分截图
用途
使用电视(安卓)安装APP
扫码进行长连接通信,传递权限和一些参数,当前页面获取参数进行展示不同的可视化数据或报表等信息。
文章标题:Vue使用websocket进行心跳连接
文章链接:http://soscw.com/index.php/essay/88780.html