- 如何调用openid来进行订单过滤鸭?
// 云函数入口函数 exports.main = async (event, context) => { const { OPENID } = cloud.getWXContext(); const res = await cloud.cloudPay.unifiedOrder({ "openid": OPENID, // 微信用户的openid "body" : event.body, // 商品描述 "outTradeNo" : event.outTradeNo, // 商户订单号 "spbillCreateIp" : "127.0.0.1", // 终端 IP "subMchId" : "1659201615", // 商户号 "totalFee" : event.totalFee, // 总金额 "envId": "cloud1-8gfd19nr926f700d", // 云函数环境名称 "tradeType":"JSAPI",//交易类型 "functionName": "pay_cb" // 支付结果通知回调云函数名 //"functionName": "buy_pay_success" // 支付结果通知回调云函数名 }) return res //小程序代码 noPay(){ wx.cloud.callFunction({ name: 'buy_pay', }).then(res => { _openid = res.result.openid // 获取返回的openid wx.cloud.database().collection('buy_orders').orderBy('time','desc').where({ status:0, openid: this.data._openid, // 过滤当前用户的订单 }).get() .then(res=>{ this.setData({ ordersList:res.data }); }); }); }, 为什么这个id并不能拿过来,我应该怎么拿过来并且判断过滤?
2023-11-14 - 怎么让扫码的那个人清掉本地缓存?
大佬们,有个问题,怎么让扫码的那个人清掉本地缓存啊,因为我更新内容之后扫码还是以前的那个版本的样子
2023-10-22 - 想问一下这个横向的滑动条怎么样做才能去掉?
[图片]
2023-09-18