- 利用云托管部署这段代码,免鉴权请求失败报错,是什么原因呢?
[图片] [图片]
2023-10-21 - wx.chooseLocation接口申请,很急,麻烦官方审核一下?
appid是wxeb05610d2336357d
2022-05-04 - wx.chooseLocation和 wx.getLocation接口要多久才能审核通过呢?
很急,我的appid是wxeb05610d2336357d
2022-05-04 - 微信支付统一下单云调用的回调函数functionname云函数,可以前端传入参数吗?
微信支付统一下单云调用的回调函数functionname云函数,可以前端传入参数吗 [图片]
2022-04-24 - 我下面这个处理事务的云函数有错,云函数日志是这样子的,是有大佬帮忙解答吗?
[图片] [图片] const cloud = require('wx-server-sdk') cloud.init({ env: 'cloud1-7gfkdvn4d13b54c9' }) const db = cloud.database({}); exports.main = async (event) => { try { const result = await db.runTransaction(async transaction => { const userRes = await transaction.collection('user').doc(event.user_id).get() if (userRes.data) { const updateuserRes = await transaction.collection('user').doc(event.user_id).update({ data: { balance: userRes.data[0].balance - event.cost, } }) const updatehistoryRes = await transaction.collection('history').add({ data: { name:event.name, stamp:event.stamp, num:event.cost, type:0, //0表示钱包减少,1表示钱包增加 } }) return { balance: userRes.data[0].balance-event.cost, } } else { await transaction.rollback('失败了') } }) return { success: true, result:result, } } catch (e) { console.error(`事务报错`, e) return { success: false, error: e } } }
2021-09-07 - 为什么我生成小程序码路径填的是chakan页面,扫出来的路径竟然是主页?为什么呢?
[图片]
2021-04-06 - 画布在开发者工具上使用正常了,但是在真机调试的时候就出错了?
[图片][图片][图片]
2021-04-04 - 这个文档有个小错误
[图片]https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/aggregate/Aggregate.sort.html
2021-03-19 - 云函数更新集合的数据,显示成功,但数据实际根本没有更新?
[图片][图片][图片] 云函数更新集合的数据,显示成功,但数据实际根本没有更新,问题出在哪里呢??百思不得其解
2020-11-26 - 这个问题怎么解决呀?
thirdScriptError Cannot read property 'init' of undefined; [Component] Event Handler Error @ pages/reflect/reflect#bound check TypeError: Cannot read property 'init' of undefined at ye.reflectpost (http://127.0.0.1:51408/appservice/pages/reflect/reflect.js:166:15) at ye.check (http://127.0.0.1:51408/appservice/pages/reflect/reflect.js:106:10) at Object.r.safeCallback (WAService.js:1:1125173) at WAService.js:1:1317978 at r (WAService.js:1:1249680) at WAService.js:1:1249802 at WAService.js:1:420977 at o (http://127.0.0.1:51408/appservice/__dev__/asdebug.js:1:28054) at e.exports.<anonymous> (http://127.0.0.1:51408/appservice/__dev__/asdebug.js:1:28423) at http://127.0.0.1:51408/appservice/__dev__/asdebug.js:1:1844
2020-07-11