- 云开发环境共享,调用方 变更主体后 共享环境是否自动失效?【已知不会】
[图片]
05-24 - 云函数如何使用npm:excel4node 导出带图片excel?
npm地址:https://github.com/natergj/excel4node 欢迎指教,拜谢大佬~
2022-03-23 - 云开发在安卓与苹果端的运行表现为何差异如此巨大?
安卓,卡,非常卡,特别卡~,换了华为P30用了几个功能,也就是实时推送的聊天室后,再重新进去就加载不出来,空白页面,反之,苹果无任何异常?
2020-07-20 - 【已解决】云函数内request第三方access_token并存入集合中咋整?
[图片] //这个是返回的字符串 小程序云开发云的函数中用request-promise请求了一个access_token,这个access_token的时效性的俩天,所以我想让他请求完后直接更新到集合中去,前端只需要读取这个集合里的access_token就可以了,让后用定时触发器每一天更新一次,求大佬显神通 const cloud = require('wx-server-sdk') cloud.init() var rp = require('request-promise'); var options = { method: 'POST', uri: 'https://www.bigiot.net/oauth/token?client_id=901&client_secret=35e0e688c1&username=12841&password=11b945045d&grant_type=password',//id、password等数据不加引号 body: { }, json: true }; // 云函数入口函数 exports.main = async (event, context) => { return rp(options) .then(function (res) { console.log(res) return res }) .catch(function (err) { console.log(err) }); } //下面的是返回到前端的数据
2020-06-02