- 微信群管理接口?
您好,我想问一下咱们官网的接口中有没有微信群管理的接口?我查的关于微信管理工具都是第三方的产品 我是想做群机器人,群成员信息获取,群成员查重等
2020-08-14 - 自定义 tabBar?
基础库 2.5.0 开始支持,低版本需做兼容处理。 自定义 tabBar 只有2.5.0目前没发现问题。高于2.5.0的都有问题。2.7.7的就有问题: 必须在app.json配置了的才能显现tabBar。希望你们做到高版本兼容低版本。
2019-08-01 - 小程序跳转公众号
我想小程序跳转到公众号,具体怎么实现
2019-07-30 - 录音无法播放
- 当前 Bug 的表现(可附上截图) - 预期表现 playRecode11: function () { //const innerAudioContext = wx.createInnerAudioContext(); let that = this; innerAudioContext.autoplay = true; innerAudioContext.obeyMuteSwitch = false; innerAudioContext.onPlay(() => { console.log('开始播放') }) innerAudioContext.onError((res) => { // 播放音频失败的回调 console.log(res) }) innerAudioContext.onTimeUpdate((res) => { const currentTime = innerAudioContext.currentTime; this.setData({ currentTime: this._formatTime(currentTime), percent: currentTime / this.data.currentSong.duration }) console.log(currentTime / this.data.currentSong.duration); if (this.data.currentLyric) { this.handleLyric(currentTime * 1000) } }) innerAudioContext.onEnded((res) => { console.log("innerAudioContext播放完成"); this.setData({ b_img: "../../images/c_musice/bf.png", b_type: "1", currentTime: this.data.duration, percent: 1 }) console.log("innerAudioContext currentTime" + that.data.percent) }) innerAudioContext.src = this.data.recodePath; // 这里可以是录音的临时路径 console.log("录音路径:" + this.data.recodePath) //innerAudioContext.play(); if (that.data.b_type == "1") { innerAudioContext.play() that.setData({ b_img: "../../images/c_musice/zt.png", b_type: "2" }) } else { innerAudioContext.pause() that.setData({ b_img: "../../images/c_musice/bf.png", b_type: "1" }) } }, - 复现路径 - 提供一个最简复现 Demo
2018-09-20