- 关于个人小程序对换类目理解?游戏积分个人可以做吗?
步数 , 积分 都可以对换? [图片] 积分,游戏积分,登陆积分等等都可以 个人可以做吗?
2022-10-15 - 真机调试报错可以不用管吗?
真机调试vivo手机报错,但是手机正常使用,换别的手机就没有报错。如图 [图片] 搜索调试错误很久没有解决! 调试基础库 一些版本电脑端也会显示错误如下 Uncaught (in promise) undefined
2022-10-15 - 在wxml文件中使用js代码,怎么写?
pl:function(){ var me = this; var query = wx.createSelectorQuery().in(me); query.selectViewport().scrollOffset() //#comm 跳转到指定id位置 query.select("#a2").boundingClientRect(); query.exec(function (res) { console.log(res); var miss = res[0].scrollTop + res[1].top - 10; wx.pageScrollTo({ scrollTop: miss, duration: 300 }); }); }, 以上是决赛js代码 点击跳到指定位置 <view class="bb1" bindtap='pl'>变数A</view> <wxs></wxs> 这个可以吗?但是里面代码不写 query.select("#a2").boundingClientRect(); 我的目的就是 在wxml中的点击 变数A 跳到位置也是变数A不是以上的a2 如变数A是5, 跳到的位置也是5。 小白求助高手。帮帮我
2021-09-04 - 摇一摇换文章代码,我想10秒后取消摇一摇功能怎么写?
var util = require(‘../../utils/util.js’) Page({ data: { x:util.res[0].title, y:util.res[0].summary, z:util.res[0].img, hidden: false, last_update:0, last_x:0, last_y:0, last_z:0 }, onReady: function (e) { var determination = false var that = this function a(){ wx.onAccelerometerChange(function(res) { var curTime = new Date().getTime() var SHAKE_THRESHOLD = 60 var last_update = that.data.last_update var len = util.res.length var list = Math.floor(Math.random()*(len-1)) if ((curTime – last_update) > 100) { var diffTime = curTime – last_update; var speed = Math.abs(res.x + res.y + res.z – that.data.last_x – that.data.last_y – that.data.last_z) / diffTime * 10000; if (speed > SHAKE_THRESHOLD && !determination) { determination = true determination = that.f(util.res[list]) } that.setData({ last_update: curTime, last_x: res.x, last_y: res.y, last_z: res.z }) } }) } a() }, f: function(res){ if(res.img){ this.setData({ x: res.title, y: res.summary, z: res.img, hidden: false, }) }else{ this.setData({ x: res.title, y: res.summary, hidden: true, }) } wx.playBackgroundAudio({ dataUrl: ‘http://fjyd.sc.chinaz.com/files/download/sound1/201410/5012.mp3’, title: ‘weixin’ }) return false } }) 10秒后不能摇一摇!怎么写?
2021-07-06 - 小程序延迟销毁代码问题?
[图片] 如上面代码,我想延迟7秒后在销毁 怎么写代码? 小白请高手指教。试了一些相关代码都不行。
2021-07-01 - 更新版本后,二维码真机测试代码包比本地代码包大,如何解决?
[图片] [图片] 之前是本地代码有多大,真机代码包就多大
2021-06-28