- 查看一次排行榜(前100名)相当于下载100次头像?调用次数100次?
运营分析里的“调用次数”总是出奇的高,想知道查看一次排行榜是不是相当于调了100次头像下载,有什么方法避免吗,头像可以缓存吗?有何省钱之道,简直入不敷出。。。[图片]
04-24 - 用户没几个,为什么调用次数这么多?
每天没几个用户,openid只在首页调用云函数获取过一次,其他页面跳转都是传参,为什么“调用次数”还这么多? [图片]
04-20 - 每天没几个用户,为何“调用次数”这么多?
用户没几个,获取openId的云函数只在首页获取一次,跳转页面时进行传参,为什么还这么多调用次数? [图片]
04-20 - 如何检测手机晃动?
微信小程序JS如何监听手机晃动?有API或者例子吗?
04-17 - bindtouchmove向下移动会出现卡顿?
<image bind:touchstart="onTouchStart" bindtouchmove="q5_onTouchMove" style="left: {{q5_tomato_left}}px; top: {{q5_tomato_top}}px;" src="cloud://cloud1-8gwgkldle8e2a93d.636c-cloud1-8gwgkldle8e2a93d-1324211457/fyss/tomato.png" /> onTouchStart(event) { // 获取手指点击屏幕的位置 const touchX = event.touches[0].clientX; const touchY = event.touches[0].clientY; // 将位置信息应用到图片的位置属性上 this.setData({ 'positionLeft': touchX, 'positionTop': touchY }); }, q5_onTouchMove (e) { // 计算手指移动的距离 const q5_offsetX = e.touches[0].clientX - this.data.positionLeft; const q5_offsetY = e.touches[0].clientY - this.data.positionTop; // 更新按钮的位置,限制每次移动的偏移量 const newX = this.data.q5_tomato_left + q5_offsetX; const newY = this.data.q5_tomato_top + q5_offsetY; this.setData({ q5_tomato_left: newX, q5_tomato_top: newY, // 更新起始点坐标 positionLeft: e.touches[0].clientX, positionTop: e.touches[0].clientY }); }, 为什么起始向上移动全程很丝滑,起始动作向下的话,全程有卡顿感?
04-17 - 如何让小程序全屏展示?
如何让小程序全屏展示,不显示电量和时间 [图片]
04-02 - 云函数如何使平均值保留3位小数?
const db = cloud.database(); const $ = db.command.aggregate; const _ = db.command; let group = { _id: '$classNo', avgBestTimes: $.avg('$bestTimes') }; let query = { bestTimes: _.exists(true), classNo: _.exists(true), }; users = await db.collection('users') .aggregate() .match(query) .group(group) .sort({ avgBestTimes: 1 }) // 1 表示升序排序 .end(); return users.list 如何使avgBestTimes保留小数点后3位啊? [图片][图片]
03-11 - 云函数如何过滤不存在某字段的记录?
users = await db.collection('users').field({ bestTimes: true, avatarUrl: true, nickName: true }).orderBy('bestTimes', 'asc').get() [图片] 如何过滤掉没有bestTimes字段的记录
03-08 - 微信云开发如何引入ttf字体文件?
[图片][图片]我如图引用并未生效,模拟器和真机都不生效。
02-05 - 划线功能如何实现?
如何监测手指运动轨迹,将划线保留在屏幕上
2023-12-22