- 教育类产品目录
给小朋友做的教育类的产品,有些类似小游戏形式的问答题目,可以通过审核吗?算是游戏吗?
2017-10-31 - 声音播放不了
wx.playBackgroundAudio({ dataUrl: "../../assets/bg.mp3", success:function(){ console.log("complete") }, fail: function(){ console.error("err.") } }) 在控制台里面打印的是 complete 但是不能播放,没有声音啊喂,有谁碰到过这个问题吗?在开发工具里面会有播放器一闪而过
2017-09-15 - wx:for遍历二维数组性能问题
我有一个二维数组需要遍历,类似如下: martix = [ [{ row: 1, col: 1, isActive: true }, { row: 1, col: 2, isActive: false }], [{ row: 2, col: 1, isActive: false }, { row: 2, col: 2, isActive: false }] ] 这样的话,我在写wx:key的时候应该写什么呢? <view class="row" wx:for="{{martrix}}" wx:for-index="i" wx:key="?????"> 不写wx:key会抛出很多的warning [图片] 因为这个数组里面的值会被动态改变,然后每次setData这个数组后渲染都会有很多warning抛出来,会不会很影响性能啊? 求教?
2017-09-01 - 页面找不到?
为毛我在开发工具里面运行是正常的,在真机预览就给我一个警告? Page[pages/list/list] not found. May be caused by: 1. Forgot to add page route in app.json. 2. Invoking Page() in async task. 然后页面还是显示了,但并没有执行里面的生命周期方法,我在onLoad里面写了一句 console.log("test") 都没有打印出来 [图片] [图片]
2017-08-31 - 新工具的几个问题
设置了debug=false,在console中还是会显示warning信息,因为我在wxml里面的wx:for 没有设置key,所以会有很多的warning,我把console中的warning都关掉了,还是有下面这种信息。 [图片] 2.网络错误 [图片]
2017-08-31 - 个人小程序转其他类型
请问下个人类型的小程序可以转成企业类型的吗? 才发现个人类型不支持支付。。。。
2017-05-10 - 开发工具网络错误
[图片] 这个是怎么个情况呢?不管设置代理还是直连都不行。 [图片]
2017-05-05 - rotate动画问题
有一个圆圈,重复一直转圈的动画,使用setInterval每秒钟旋转360度,但是想要继续旋转就只能把deg往上加,如果设置为0会出现旋转回去的动画。。。。。 只有把旋转角度往上加的这个办法吗?有没有其他一直循环播放的设置呢? onShow: function () { var animation = wx.createAnimation({ duration: 1000, timingFunction: 'linear', }) this.animation = animation setInterval(this.startAnimation, 1000); }, startAnimation: function () { this.setData({ executeCount: exec + 360 }); this.animation.rotate(this.data.executeCount).step(); this.setData({ changeAnimation: this.animation.export() }); }
2017-03-20 - css的transform假死问题
在进入界面的时候有一个过度界面,通过css设置的旋转动画,偶尔会产生假死效果,页面没有任何反应,按钮也不能点击 [图片] 有没有人遇到过这个问题? .change { position: absolute; left: 40%; margin: 0 auto; height: 150rpx; width: 150rpx; border-radius: 50%; border-left: 6rpx solid #69ffac; border-top: 6rpx solid #20a0ff; border-right: 6rpx solid #ffe29f; border-bottom: 6rpx solid #20a0ff; animation: change 2s linear infinite; z-index: 2; } @keyframes change { 0% { transform: rotate(0deg); } 50% { transform: rotate(180deg); } 100% { transform: rotate(360deg); } }
2017-03-20 - 路由页面管理问题
求问 如何关闭路由中的页面? 而且从开发工具的调试页面中看,在跳转到相同页面时路由中的页面还是存在的,貌似并不会被合并掉?
2017-02-23