- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用下面提供的代码在 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 anasync 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/
我在 Python 2 中尝试了这段代码: def NewFunction(): return '£' 但我收到一条错误消息: SyntaxError: Non-ASCII character
我正在学习xpath,并且我正尝试从html usint xpath获取一些数据 我发现谷歌浏览器可以选择“复制xpath”,效果很好 但不适用于这个例子 some divs
我是 ruby 的初学者。我想修复其中一个邮件软件中的错误。我应用的修复代码如下: @headers[:recipient] = { "To" => (cc.map do |p|
我是初学者级别的python用户,当我在终端中键入以下内容时: $ pydoc Inleesgenbank.py 我收到以下错误消息: ./Inleesgenbank.py中的问题-:语法无效(Inl
我正在编写用于解析电子邮件的脚本,但是以下部分的for循环上有一些SyntaxError: def main(): writer = csv.DictWriter(open('feature
我正在尝试在python33中创建分发文件,但没有成功。 我用嵌套器名称创建了一个文件夹,并在Windows 8的C驱动程序中放入了python33。 此文件夹有2个文件。 nester.py和set
当我尝试导入NumPy时,突然出现以下错误: 更具体地说,它在我键入时显示: import numpy as np 要不就: import numpy 它也会在Python控制台中发生,如下所示: P
在我的 HTML 文件中,我有一行(如下)通过 WiFi 从设备获取响应并使数据可用于我的 JavaScript,它运行良好,除非响应文本中有错误并停止。 响应是一个代表 JavaScript 变量的
我开始使用 Javascript OOP,我编写了我的第一个类,但我在控制台中收到消息错误 这是类(class): class Quote{ deleteQuote(callback){ $(
我正在使用argparse来解析参数,但是当我得到args.global时,出现了一个奇怪的错误,我不知道我哪里做错了 ... parser.add_argument('-u','--update',
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我正在使用argparse来解析参数,但是当我得到args.global时,出现了一个奇怪的错误,我不知道我哪里做错了 ... parser.add_argument('-u','--update',
有什么不同?为什么它会在函数 a() 中出错? function a(){ 1 == 1 ? return true: ""; // Uncaught SyntaxError: Unexpe
我有一个 python 脚本,其中包含如下函数参数的类型声明: def dump_var(v: Variable, name: str = None): 据我所知,这是一个为函数设置输入参数类型的有效
我正在尝试从命令行运行 Python 脚本,这是我的脚本: import sys def printsomething(sys.argv): text = str(sys.argv[1])
我在 macbook 上使用终端将数据打印到打开的文件中: >>> out=open("test_output.txt","w") >>> print("hello",file=out) File
我想排除以下代码产生的错误,但我不知道如何。 from datetime import datetime try: date = datetime(2009, 12a, 31) except:
我想在动态生成的列表中放置一个 onclick 事件。我不能按原样使用它,例如 updateRoomID(arg) ,因为它会立即开火。所以我把它放在一个匿名函数中,按照网上各种来源的建议:funct
我有以下脚本: 测试.py: import sys try: import random print random.random() except: print sys.exc
这个问题在这里已经有了答案: "+=" causing SyntaxError in Python (6 个答案) 关闭 3 年前。 在我的代码中有这些行: if numVotes == 0:
我是一名优秀的程序员,十分优秀!