- FileSystemManager.rmdir的recursive参数无效?
不管开发者工具还是真机,FileSystemManager.rmdir传入recursive: true仍然报错fail directory not empty,那这个recursive参数的意义何在?
2018-05-25 - 新注册的微信号,无法获取unionID
- 当前 Bug 的表现: 新注册一个微信账号,并在APP中进行微信授权登录,同意授权。然后该微信账号打开小程序,在小程序中调用wx.login接口。 结果:调用wx.login时未获得该微信账号的unionID。 APP、小程序、公众号均已在开放平台进行绑定。且使用其他微信账号进行同样操作,可以获取到unionID。 该新微信账号关注公众号后,即可获取unionID。但取消关注后,即无法获取unionID。 - 预期表现: 该新注册的微信账号在调用wx.login时可获得其unionID - 复现路径 - 提供一个最简复现 Demo
2018-10-19 - onShareAppMessage能否判断分享的是群还是个人
自从onShareAppMessage不支持分享成功还是失败后 怎么拿到分享后的参数 (判断是个人还是群) wx.getShareInfo的shareTicket怎么获取
2018-10-23 - 小程序跳转是否还是限制同个公众号下的小程序才可以互相跳转限制?
- 需求的场景描述 当前绑定不同公众号下的小程序互相跳转时,提示: 该功能无法使用,请使用该小程序其他功能。换成相同公众号下的小程序是可以正常的 - 希望提供的能力 之前国庆是说会取消这个限制的,但是目前还是没有,是延后还是忽略了,希望大大们给的答复 谢谢诶了 这是国庆的时候发的公告:https://developers.weixin.qq.com/community/develop/doc/0000ac39168d50641477b725c51c01
2018-10-25 - bind:touchend 绑定停止录音 无效果
<button id='recordBtn' class="record-btn" hover-class="tapSelectBtn" bind:touchstart='holdRecord' bind:touchend='endRecord' bind:touchmove='moveRecord' bind:touchcancel='cancelRecord'> <image src='../images/record-logo.png'></image> <text>按住说话</text> </button> this.setData({ recordOptions = { //录音参数配置 duration: 600000, sampleRate: 11025, numberOfChannels: 1, encodeBitRate: 30000, format: 'mp3' } }) holdRecord() { wx.getRecorderManager().start(this.data.recordOptions) } endRecord() { console.log('123456') //此处可以正常打印 wx.getRecorderManager().stop() //此处有时候无效果,录音停止不下来。 }
2018-09-03 - touchend 不触发
- bug:长按开始录音,滑动后有时touchend 不触发导致录音没有结束 - 预期效果:松开手触发touchend——>录音结束 备注:长按后触发longpress开始录音——>不松手开始滑动(尤其是屏幕边界处)——>松开手不能触发touchend
2018-10-23 - innerAudioContext真机调试延时
- 当前 Bug 的表现(可附上截图) 用 innerAudioContext 连续播放5条m4a , 开发工具测试正常 , 真机调试第一条延时 , 然后其他没有播放 ,也没有报异常 , ( 荣耀 , oppo ,都是这样 ) ( Iphone5正常 , 可以连续播完 ) - 预期表现 一条接着一条的播放 , 连续播放5条m4a - 复现路径 - 提供一个最简复现 Demo var innerAudioContext = wx.createInnerAudioContext(); innerAudioContext.autoplay = false; innerAudioContext.volume = 1; innerAudioContext.onEnded(() => { go(); }) innerAudioContext.onError((res) => { // go(); }) const list = [ // 'https://www.kfqlh.com/sounds/s1.m4a' // , 'https://www.kfqlh.com/sounds/s2.m4a' // , 'https://www.kfqlh.com/sounds/s3.m4a' // , 'https://www.kfqlh.com/sounds/s4.m4a' // , 'https://www.kfqlh.com/sounds/s5.m4a' // ]; var lastURL = null; // const go = function() { if (list.length > 0) { lastURL = list.shift(); innerAudioContext.src = lastURL; innerAudioContext.play(); } else { // playing = false; } }; // Page({ onLoad: function(options) {}, onReady: function() { go(); }, })
2018-10-22 - 关于webView中展示全景图的问题
在webView中展示一个带有全景图的网页,在某些机型中会黑屏。并且有些机型直接通过微信扫一扫访问页面则一切正常,但在小程序的webView中打开会黑屏。(全景图使用three.js),请问有人遇到过这种情况嘛
2018-06-26