Mongodb administrator privileges issues?

the mongodb database is deployed on the cloud server, and the super administrator

node

clipboard.png

is set up according to the steps on the Internet.

here is my node code

var url = "mongodb://kezuncheng:123456@127.0.0.1:27017/";

router.post("/register", (req, res) => {
  MongoClient.connect(url, (err, db) => {
    if (err) {
      console.log(err);
      return;
    }
    const test = db.db("admin");
    test.collection("users").find({ username: req.body.username }).toArray((err, result) => {
      if (err) {
        res.send(err);
        return;
      }
      //
      //
    })
  });
});

I would like to ask where this problem lies.

Apr.20,2022

try replacing test.collection ('users') with test.collection (' system.users')?

Menu