收藏
回答

mangodb 删除表字段失败?

在云开发控制台删除表字段失败,报错了,帮忙看下哪里出问题。

db.collection('user').update({
"zhifa": {
"$exists": true
}
}, {
"$unset": {
"zhifa":null
}
}, {
multi: true
});

错误提示:

RuntimeError: error while executing function update: Error: 
errCode: -401003 api parameter type error | errMsg: parameter.data should be object instead of undefined;
 (from line 2, col 25 to line 2, col 31)

  1 |
> 2 | db.collection('user').update({
    |                         ^^^^^^
  3 |     "zhifa": {
  4 |         "$exists": true
  5 |     }

目的是删除user表中的zhifa字段

回答关注问题邀请回答
收藏

1 个回答

  • 跨商通
    跨商通
    2022-12-14

    看文档,还是看文档。不要完全依赖mongo的经验,不是一个东西,相差不少的。

    2022-12-14
    有用
    回复
登录 后发表内容