1 Star 0 Fork 26

CHUCKIE/GoEasyDemo-wxapp-IM-Chat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 773 Bytes
一键复制 编辑 原始数据 按行查看 历史
jiacai 提交于 2021-01-07 16:56 . 更新goEasyIM sdk 1.5.1
//app.js
import GoEasyIM from './static/lib/goeasy-im-1.5.1.js';
App({
onLaunch: function () {
wx.im = GoEasyIM.getInstance({
host: 'hangzhou.goeasy.io',
appkey: '您的commonkey'
});
wx.GoEasyIM = GoEasyIM;
},
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;
},
globalData: {
imService: null,
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/chucki/GoEasyDemo-wxapp-IM-Chat.git
git@gitee.com:chucki/GoEasyDemo-wxapp-IM-Chat.git
chucki
GoEasyDemo-wxapp-IM-Chat
GoEasyDemo-wxapp-IM-Chat
master

搜索帮助