云函数怎么发送同步get请求?
有段代码需要遍历一个数组,对符合条件的元素要进行get请求,因为后续的操作需要用到请求的结果,所以必须要等get请求完成。然后现在的get请求大概需要2-3秒完成,所以异步的话是拿不到结果的。所以想问问怎么写同步的请求,用到什么package或者什么方法
(这不用附代码了吧,需求说的很明白了)
for .....
if ......
request....
//后续操作,需要等到for循环完成且request完成
.......
3 回复
const cloud = require('wx-server-sdk')
cloud.init()
exports.main = async (event, context) => {
try {
const result = await cloud.openapi.wxacode.getUnlimited({
scene: 'a=1'
})
console.log(result)
return result
} catch (err) {
console.log(err)
return err
}
}
一个参考:云调用的官方示例 https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/qr-code/wxacode.getUnlimited.html#method-cloud