云数据库的_id 都是带 . (点) 的
云数据库_id值含 . (点号) 用起来出错wx.cloud.init(); const db = wx.cloud.database(); // let d = {}; d['12_0.12'] = 'abc'; // // 云数据库结果 db.collection('test_1').add({ data: d }) let 保存结果 = { '12_0': { '12': 'abc' } } // // 本地 wx.setStorageSync('DAT', d); let 保存结果 = { '12_0.12': 'abc' }
2020-03-02- 复现路径 <a href="wechatide://minicode/xIJshlmu7V3B" target="_blank">wechatide://minicode/xIJshlmu7V3B</a> 出现问题的机型有 : vivo X9 , oppo R9 , 荣耀play 微信版本号 : 6.7.3
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-22const confimrSound = wx.createInnerAudioContext() confimrSound.onPlay(() => { // 调一下顺序 //这里就不运行 }) confimrSound.src = '/assets/audio/confirm.mp3' confimrSound.play()
inner audio context 播放问题const confimrSound = wx.createInnerAudioContext() confimrSound.src = '/assets/audio/confirm.mp3' confimrSound.play() confimrSound.onPlay(() => { //这里就不运行 })
2018-10-22请举个例子 , 不是很明白
强烈要求web-view组件对页面的监控能力- 需求的场景描述(希望解决的问题) - 希望提供的能力 强烈要求web-view组件对页面的监控能力, 尤其是能监听到url的变化。
2018-10-18