微信小程序调用云函数时报错:Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail requestID c01392b3-1511-11eb-ab7d-5254000505e4, cloud function service error code -504002, error message ReferenceError: wx is not defined
原因:小程序端调用云数据库初始化语法为const db = wx.cloud.database(),而云函数端调用数据库不需要wx.,直接const db = cloud.database()就好了
解决:去掉wx.,重新上传部署云函数