如题。
云函数A调用云函数B,可是B很久之后才会执行
函数A
console.log('异步执行退款');
// 执行退款
cloud.callFunction({
name: 'refund',
data: {
orderId: orderInfo._id,
refundFee: orderInfo.totalFee,
refundType: CONSTANT.refundType.USER_CANCEL_UN_MAKE_UP,
refundReason: '用户取消订单'
}
});
调用日志:
函数A在 20:04 执行 cloud.callFunction({name: 'refund'})
函数B在 20:06:24 才 开始调用
云函数里不要用异步,改成await