errMsg: Update Fail: write errors: [{The dollar ($) prefixed field '$push' in 'member.$push' is not valid for storage.}]
错误代码:
await db.collection('user').where({ openId: event.userInfo.openId }).update({ data: { teams: _.push(event.id) } })
然后我把它改成了:
userTeam.data[0].teams.push(event.id)
await db.collection('user').where({ openId: event.userInfo.openId }).update({ data: { teams: userTeam.data[0].teams } })
就没事了
我之前使用_.push的时候都没事,近俩个星期使用就出错了
貌似 _.xxx 都出错了
本文网址:http://www.91bianli.com/kaifazhinan/76100.html