云函数update()不报错,但无法更新
想更新isEnd: true
使用了tcb-router路由
app.router("groupBuyEnd", async (ctx, next) => {
let idx = event.idx;
const result = await db.collection('LinkFlock').where({
_id: event.linkId
}).update({
data: {
[`endTime[${idx}].isEnd`]: true
}
})
ctx.body = { result }
});
跟tcb-router没关系,把参数写死了试试,学会调试