- 云数据库_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 - movable-view direction值修改无效
- 当前 Bug 的表现(可附上截图) 点击<x固定>movable-view仍可以随意移动 - 预期表现 < 开始<movable-view>可以随意移动 < 点击<x固定>后 , < 只能横向移动 - 复现路径 https://developers.weixin.qq.com/s/7QWXwimf6PYG - 提供一个最简复现 Demo
2019-03-31 - previewImage 怎样知道浏览到第几张图, 或那一张图
如题
2019-01-08 - 小游戏如何切换成小程序
“服务类目”选择了"游戏",就不能改回其他"服务类目"了吗?
2018-10-26 - innerAudioContext安卓真机调试延时
- 当前 Bug 的表现(可附上截图) 在开发工具上调试正常,依次播放1~5段m4a 。 在ios(Iphone5)上调试也正常,依次播放1~5段m4a。 在Android(oppo R9 , vivo X9 , 荣耀play )出现以下情况 : 播放第1段m4a延时(5秒左右) 播放第2段m4a又延时(10秒左右) 第3,4,5段m4a一直没有播放 - 预期表现 依次播放1~5段m4a。 即: 播放第1段m4a,结束后自动播放第2段m4a, 如此一直播放到第5段结束。 - 复现路径 wechatide://minicode/HoNw4nmr7B3p - 提供一个最简复现 Demo
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-21