在云开发后台 为指定集合新增加一个字段. 我这样写只是指定一条记录,怎么为所有记录新加字段
构造一个 where 1 = 1的查询条件就行了,云数据库判断字段在不在 db.collection('user') .where({ _id: _.exist(true) }) .update({ data: { test: 123 } })