簡體   English   中英

SyntaxError:await 僅在異步函數中有效,當使用 Node JS 連接到 Mongo DB 時

[英]SyntaxError: await is only valid in async function, When connecting to Mongo DB using Node JS

我正在嘗試使用下面提供的代碼在 Javascript 中使用 async/await 函數訪問 mongo 數據庫。 當我運行代碼時,終端返回以下錯誤:

SyntaxError: await is only valid in async function

這個錯誤讓我很困惑,因為我對 newFunction 使用了“異步”。 我曾嘗試更改“async”和“await”的位置,但迄今為止我嘗試過的任何組合都無法成功執行。 任何見解將不勝感激。

var theNames;
var url = 'mongodb://localhost:27017/node-demo';

const newFunction = async () => {
      MongoClient.connect(url, function (err, db) {
      if (err) throw err;
      var dbo = db.db("node-demo");
      //Find the first document in the customers collection:
      dbo.collection("users").find({}).toArray(function (err, result) {
        if (err) throw err;
        theNames = await result;
        return theNames;
        db.close();
      });
    });
}

newFunction();
console.log(`Here is a list of theNames: ${theNames}`);

錯誤是正確的,因為該函數不是異步函數。 toArray async回調函數。

例子

var theNames;
var url = 'mongodb://localhost:27017/node-demo';
const newFunction = async () => {
      MongoClient.connect(url, function (err, db) {
      if (err) throw err;
      var dbo = db.db("node-demo");
      //Find the first document in the customers collection:
      dbo.collection("users").find({}).toArray( async function (err, result)  {
        if (err) throw err;
        theNames = await result;
        return theNames;
        db.close();
      });
    });
}
newFunction();
console.log(`Here is a list of theNames: ${theNames}`);

您的代碼有重大變化,請嘗試以下操作:

對於貓鼬:

const mongoose = require('mongoose');
const Schema = mongoose.Schema;
let theNames;
let url = 'mongodb://localhost:27017/node-demo';

const usersSchema = new Schema({
    any: {}
}, {
    strict: false
});

const Users = mongoose.model('users', usersSchema, 'users');
const newFunction = async () => {
    let db = null;
    try {
        /** In real-time you'll split DB connection(into another file) away from DB calls */
        await mongoose.connect(url, { useNewUrlParser: true });
        db = mongoose.connection;
        let dbResp = await Users.find({}).limit(1).lean() // Gets one document out of users collection. Using .lean() to convert MongoDB documents to raw Js objects for accessing further.
        // let dbResp = await Users.find({}).lean(); - Will get all documents.
        db.close();
        return dbResp;
    } catch (err) {
        (db) && db.close();
        console.log('Error at newFunction ::', err)
        throw err;
    }
}
newFunction().then(res => console.log('Printing at calling ::', res)).catch(err => console.log('Err at Calling ::', err));

對於 MongoDB 驅動程序:

const MongoClient = require('mongodb').MongoClient;

const newFunction = async function () {
    // Connection URL
    const url = 'mongodb://localhost:27017/node-demo';
    let client;

    try {
        // Use connect method to connect to the Server
        client = await MongoClient.connect(url);
        const db = client.db(); // MongoDB would return client and you need to call DB on it.
        let dbResp = await db.collection('users').find({}).toArray(); // As .find() would return a cursor you need to iterate over it to get an array of documents.
        // let dbResp = await db.collection('users').find({}).limit(1).toArray(); - For one document
        client.close();
        return dbResp;
    } catch (err) {
        (client) && client.close();
        console.log(err);
        throw err
    }
};
newFunction().then(res => console.log('Printing at calling ::', res)).catch(err => console.log('Err at Calling ::', err));

開發人員經常對async/await的使用感到困惑,他們將 async/await 與 callback() 混淆。 因此,請檢查以下代碼中的問題或不需要的部分:

語法錯誤:AWAIT僅在異步功能有效-是因為你不能使用await的外部async function

在這一行dbo.collection("users").find({}).toArray(function (err, result) { - 它必須是async函數,因為await其中使用了await

var theNames; // There is nothing wrong using var but you can start using let.
var url = 'mongodb://localhost:27017/node-demo';

const newFunction = async () => {
      MongoClient.connect(url, function (err, db) {
      if (err) throw err;
      var dbo = db.db("node-demo");  // You don't need it as you're directly connecting to database named `node-demo` from your db url.
      //Find the first document in the customers collection:
      /** If you create a DB connection with mongoose you need to create schemas in order to make operations on DB.
          Below syntax goes for Node.Js MongoDB driver. And you've a mix n match of async/await & callbacks. */
      dbo.collection("users").find({}).toArray(function (err, result) { // Missing async keyword here is throwing error.
        if (err) throw err;
        theNames = await result;
        return theNames;
        db.close(); // close DB connection & then return from function 
      });
    });
}

newFunction();
console.log(`Here is a list of theNames: ${theNames}`);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM