gpt4 book ai didi

javascript - 使用 Node JS 连接到 Mongo DB 时出现 SyntaxError : await is only valid in async function,

转载 作者:太空宇宙 更新时间:2023-11-04 01:19:50 24 4
gpt4 key购买 nike

我正在尝试使用下面提供的代码在 Javascript 中使用异步/等待函数来访问 mongo 数据库。当我运行代码时,终端返回以下错误:

SyntaxError: await is only valid in async function

这个错误让我感到困惑,因为我对 newFunction 使用了“async”。我尝试过更改“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}`);

最佳答案

您的代码有重大变化,请尝试以下操作:

对于 Mongoose :

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));

开发人员经常对异步/等待的使用感到困惑,并且他们将异步/等待与回调()混淆。因此,请检查以下代码中的问题或不需要的部分:

SyntaxError: await is only valid in async function - Is because you can not use await outside of an async function.

在这一行dbo.collection("users").find({}).toArray(function (err, result) { - 它必须是async函数,因为其中使用了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}`);

关于javascript - 使用 Node JS 连接到 Mongo DB 时出现 SyntaxError : await is only valid in async function,,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59709431/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com