//
befolisten:function(data){
console.log(data);
},
//监听websocketset
listenWebsocketset:function(){
var that = this;
//加载成功
uni.onSocketMessage(function(res){
console.log('接收Websocketset' + res.data);
var data = JSON.parse(res.data);
try{
if(data.type=='sendmsg'){
that.befolisten(data);
}
//that[data.type](data)
}catch(e){
//TODO handle the exception
console.error(that);
console.error('未设置监听['+data.type+'] 数据事件');
}
});
},
4***@qq.com (作者)
截图中红字部分注释去掉就正常的,能确认ws 是正常的
2022-09-13 11:30