1 Star 0 Fork 26

likaida/微信小程序实现IM聊天即时通讯

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.js 840 Bytes
一键复制 编辑 原始数据 按行查看 历史
BettyW 提交于 2022-05-05 16:23 . - 更新SDK、取消多选框外边距
//app.js
import GoEasy from './static/lib/goeasy-2.4.7.min';
App({
onLaunch: function () {
wx.goEasy = GoEasy.getInstance({
host:'hangzhou.goeasy.io',//应用所在的区域地址: [hangzhou.goeasy.io, 新加坡暂不支持IM,敬请期待]
appkey: 'BC-xxxx',// common key
modules:['im']
});
wx.GoEasy = GoEasy;
},
formatDate: function(time) {
const date = new Date(time);
const month = date.getMonth() + 1;
const day = date.getDate();
const hour = date.getHours();
const minute = date.getMinutes();
return [month, day].map(this.formatNumber).join('-') + ' ' + [hour, minute].map(this.formatNumber).join(':');
},
formatNumber:function(n) {
n = n.toString();
return n[1] ? n : '0' + n;
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/aceli11/GoEasyDemo-wxapp-IM-Chat.git
git@gitee.com:aceli11/GoEasyDemo-wxapp-IM-Chat.git
aceli11
GoEasyDemo-wxapp-IM-Chat
微信小程序实现IM聊天即时通讯
2.4

搜索帮助

0d507c66 1850385 C8b1a773 1850385