- 云函数当中使用getUnlimited接口报错,哪位大神帮忙看看是哪里的问题?
[图片][图片][图片] config.json页面代码 { "permissions": { "openapi": [ "openapi.wxacode.getUnlimited" ] } } js页面代码 //获取二维码 async QueryQRcode(code) { await wx.cloud.callFunction({name:'CreateQRcode',data:{_id:code},success:res=>{ console.log(res); },fail:err=>{ console.log(err); }}) }, /** * 生命周期函数--监听页面初次渲染完成 */ async onReady() { var USERINFO = wx.getStorageSync('USERINFO'); await this.QueryQRcode(USERINFO._id); }, 云函数页面代码 // 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV, }) // 云函数入口函数 exports.main = async (event, context) => { return await cloud.openapi.wxacode.getUnlimited({ "page": 'pages/login/login', "scene":'a=1', "checkPath": true, "envVersion":'trial', "width":280 }) }
2022-04-04 - splice删除数组的时候出现BUG,逻辑层和视图层不同步。
删除数组后逻辑层已经执行完毕,但是视图层没有渲染。 delArr(options){ var index = options.currentTarget.dataset.index; var step = this.data.step; step.splice(index,1); this.setData({step:step}); }
2022-04-01