- supportedMaterials配置后体验版无效?
supportedMaterials配置后体验版无效? [图片]
01-19 - 调用cloud.openapi.wxacode.getUnlimited为什么buffer是空的?
try { const result = await cloud.openapi.wxacode.getUnlimited({ "page": body.page, "scene": body.scene, "checkPath": body.checkPath, "envVersion": body.envVersion }) return result } catch (err) { return err } 返回的结果是 { "result": { "contentType": "image/jpeg", "buffer": {}, "errMsg": "openapi.wxacode.getUnlimited:ok", "errCode": 0 }, "requestID": "92c32217-2951-4ce0-a71b-5336dec055f9" } n拿什么去展示呢
2023-12-11 - 云函数开发开通云开发后端服务,前端请求时cloud.getWXContext()为什么会有数据?
云函数开发开通云开发后端服务,前端请求时cloud.getWXContext()为什么会有数据?
2023-10-25 - 云数据库批量update怎么实现?
[ {_id: 1, score: 99}, {_id: 2, score: 78}, {_id: 3, score: 60}, ] 我需要更新成如下结果 [ {_id: 1, score: 100}, {_id: 2, score: 80}, {_id: 3, score: 65}, ] 请问db.collection().where().update()应该怎么实现呢
2023-08-17 - 小程序检测更新弹窗怎么触发的?
const updateManager = Taro.getUpdateManager() if (updateManager) { updateManager.onCheckForUpdate(res => { // 请求完新版本信息的回调 if (res.hasUpdate) { updateManager.onUpdateReady(() => { Taro.showModal({ title: '更新提示', content: '新版本已经准备好,是否重启应用?', success: ({ confirm }) => { if (confirm) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 updateManager.applyUpdate() } } }) }) updateManager.onUpdateFailed(fail => { // 新的版本下载失败 console.log('onUpdateFailed', fail) }) } }) } 小程序只做了这部分弹窗逻辑,上述的代码应该只会弹出下面的弹窗 [图片] 但是现实有一个很奇怪的现象,有的用户还会弹出另一种提示框: “小程序需要重启以使用最新功能” 全局搜索也没设置过这个弹框,想问问这个弹窗是在什么时机触发的 [图片]
2022-05-14 - 关于<wx-open-launch-app>几个已知问题?
1、IOS平台,后台进程杀死,在微信端拉起APP不会执行onReq回调; 2、Android平台,后台进程杀死,在微信端无法拉起APP;
2020-07-06 - wx.authorize userLocation 不弹出授权?
先调用wx.getLocation接口,收到fail的原因为auth deny,然后调用wx.authorize接口,结果直接给我回调fail,同样的原因auth deny,有毒吧你们。
2019-08-09 - 小游戏虚拟支付如何知道支付成功
wx.requestMidasPayment 虽然有 success 可以知道,但是如果支付成功后中途掉线了呢?服务器不断轮询midasGetBalance吗?
2018-08-07 - 虚拟支付和微信支付有什么区别
我在开发小游戏,看到公众后台有微信支付和虚拟支付,这两个有什么区别呢?虚拟支付是不是提供给小游戏用的?小游戏能只开通微信支付,而不走虚拟支付吗?
2018-07-27 - FileManager.writeFile能写cc.RenderTexture吗
一个cc.RenderTexture对象,怎么转成ArrayBuffer,再调用FileManager.writeFile写入文件啊?
2018-07-17