我在云函数调用的时候掉了wx.cloud.CDN的接口,但在企业微信小程序上这个接口返回错误,但在微信小程序上是没有问题的。
企业微信基础库是2.19.2
返回错误:
cloud.callFunction:fail undefined uploadToCommonCDN:filePath and fileData
调用方式:
const initRes = await wx.cloud.callFunction({
name: "testFunction",
data: {
envId: application.cloudENVId,
objectMapStr: wx.cloud.CDN(JSON.stringify(objMap)),
startTime: getUTCTimeByTimeStamp(startSyncTime),
userId: userId,
},
config: {
env: application.cloudENVId,
},
});
我只是调用了传String参数的接口,为啥会报filePath这样的错误?是不是在企业微信小程序上这个接口不支持?