背景
最近写个微信小程序,在云函数中操作数据库时,明明操作成功了,理应回调success,却没有;而在小程序端,一样的代码,却能成功回调。
问题原因
参见官方文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-server-api/init.html
引用重要原话:需要特别注意的是,在 wx-server-sdk
中不再兼容 success
、fail
、complete
回调,总是只会返回 Promise
。
解决方案
在云函数中,回调时别使用success, fail, complete。应该用Promise风格的写法来代替,即数据库操作完毕后,用then()。
错误例子
await db.collection(‘users‘).add({ data: { a: "one", b: "two", }, success(res) { fun1() }, })
正确例子
await db.collection(‘users‘).add({ data: { a: "one", b: "two", }, }).then(res => { fun1() })