- wx.createInnerAudioContext()音频时长
this.innerAudioContext.src = res.examInfo.audiovideo; //duration Number 当前音频的长度(单位:s),只有在当前有合法的 src 时返回 let audioDuration = this.innerAudioContext.duration; 各位小伙伴,如上面代码,.mp3格式的路径,duration返回的始终是0. 是我的代码有问题还是要求固定格式的音频才会返回时长呢。 我的音频地址是http://olrnvk5q7.bkt.clouddn.com/mp3/bobby%20vinton%20-%20Mr.%20Lonely.mp3,难道是我的音频地址不合法?
2018-03-21 - 微信开发工具,navigationStyle:custom全屏如何返回上一个页面
如题,在开发工具上,使用navigationStyle:custom全屏后,跳转到另一个页面,无法返回前一个页面。安卓和ios上还可以按手机的返回键或滑动屏幕返回。 开发工具上除了自己模拟一个返回操作,好像没有其他办法。 有没有官方的返回操作。 [图片]
2018-03-05 - 小程序监听进程关闭
有大佬知道小程序是否能监听用户关掉小程序进程吗?能的话,用什么方法? onUnload只能监听到用户关闭并离开当前界面,无法监听到整个小程序进程关掉。
2018-02-01 - 求助:wx.createInnerAudioContext()停止当前播放的音频
求助:wx.createInnerAudioContext() 如何停止停止当前播放的音频,官方文档没有示例代码 [图片] //语音控制 audioControl: { /** * 播放语音 * @param audioUrl 语音路径 */ playAudio(that, audioUrl) { let innerAudioContext = wx.createInnerAudioContext(); innerAudioContext.autoplay = true; innerAudioContext.obeyMuteSwitch = true; innerAudioContext.src = audioUrl; innerAudioContext.onPlay(() => console.log('开始播放')); innerAudioContext.onEnded(() => { that.setData({ audioPlayState: false }) }); innerAudioContext.onError((res) => { console.log(res.errMsg); console.log(res.errCode); }); }, //暂停播放 stopVoice(that, audioUrl){ let innerAudioContext = wx.createInnerAudioContext(); innerAudioContext.src = audioUrl; innerAudioContext.onPause(() => { console.log('暂停播放'); }) innerAudioContext.onError((res) => { console.log(res.errMsg); console.log(res.errCode); }) } },
2017-11-16 - v1.01.1711020版本开发工具,使用rpx作为单位时,切换机型问题
v1.01.1711020版本开发工具,使用rpx作为单位时,切换机型时,组件大小并不会自适应,编译和刷新都没用,必须要重启开发工具。 望解决。 [图片] [图片]
2017-11-08 - 页面参数,页面路径建议
开发工具模拟器底部的页面参数建议和旧版一样上下布局,现在左右布局页面路径都看不全了 [图片]
2017-08-31 - 多开
要是开发者工具可以像webstorm和sublime一样多开就好了
2017-08-31 - 新版开发工具导航栏子选项字体问题
如图,导航栏子菜单文字显示不全,虽然不影响使用,但看着别扭,从测试版开始就有了,以为更新以后会修复 [图片]
2017-08-31