微信小程序 聊天室简单实现

前端之家收集整理的这篇文章主要介绍了微信小程序 聊天室简单实现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

微信小程序 聊天室简单实现

utils文件夹下websoctet.js文件

function connect(user,func) {

wx.connectSocket({
url: url,header: {"content-type":'application/x-www-form-urlencoded'}
});
wx.onSocketOpen(function (res) {
send('{"type":"login","client_name":"'+user.nickName+'","room_id":"1"}')
});
//接受消息
wx.onSocketMessage(func);
}

//发送消息
function send(msg) {
wx.sendSocketMessage({ data: msg });
}
module.exports = {
connect: connect,send: send
}

具体页面.js文件内容

函数 add: function (e) { websocket.send('{"type":"say","from_client_id":"'+user.nickName+'","to_client_id":"all","content":"'+this.data.message+'"}') },onLoad: function () { var that = this //调用应用实例的方法获取全局数据 app.getUserInfo(function (userInfo) { user = userInfo; websocket.connect(user,function (res) { text = that.encodeStr(res.data) + "\n"; console.log(res) that.setData({ text: text }); // websocket.send('{"type":"pong"}'); }) }) },

下面方法很好玩,因为使用的服务器 是开源的PHP服务器,所以微信小程序接收到的聊天室中文内容是ASCII编码,所以经过此方法可以转换。

4) { native1 += code.substring(4,code.length); } } return native1 },

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持

原文链接:https://www.f2er.com/weapp/39870.html

猜你在找的微信小程序相关文章