我已经创建了一个AWS账户,并希望将MongoDB Atlas与AWS Lambda一起使用。 我下载的唯一依赖是mongodb本地。
npm install mongodb
来自mongoDB Atlas for Nodejs的基于驱动程序的连接字符串
var uri = "mongodb+srv://kay:myRealPassword@cluster0.mongodb.net/test";
MongoClient.connect(uri, function(err, client) {
const collection = client.db("test").collection("devices");
// perform actions on the collection object
client.close();
});
我认为连接成功,因为err参数为NULL。
但我无法弄清楚如何创建集合,如何查找结果,如何插入文档。
我已尝试过此代码
module.exports.hello = (event, context, callback) => {
var MongoClient = require('mongodb').MongoClient;
var uri = "mongodb+srv://kay:myRealPassword@cluster0.mongodb.net/test";
MongoClient.connect(uri, function(err, client) {
const collection = client.db("test").collection("devices");
collection.insert( { "msg" : "My First Document" } );
var results = client.db("test").collection("devices").find();
console.log(results);
client.close();
callback(null, { message: 'Go Serverless v1.0! Your function executed successfully!', event });
});
};
但它返回(在Windows控制台中)一个JSON格式的巨大对象,它就像配置数据(不是查询结果)
我通过
在本地执行此代码sls invoke local --function hello
答案 0 :(得分:0)
一般的想法是检查连接,插入等是否有错误。看看这个错误检查:
if (error) return 1;
有更复杂的方法,但对于你的情况,这应该做的工作。
这是一个如何显示你的脚本的例子:
MongoClient.connect(uri, (error, client) => {
if (error) return 1; // Checking the connection
console.log('Connection Successful');
var db = client.db('mydb'); // Your DB
let newDocument = { "msg" : "My First Document" }; // Your document
db.collection('mycollection').insert(newDocument, (error, results) => { // Your collection
if (error) return 1; // Checking the insert
console.log('Insert Successful');
})
db.collection('mycollection')
.find({})
.toArray((error, accounts) => {
if (error) return 1; // Checking the find
console.log('Find Successful');
console.log(accounts);
return 0;
})
})
你应该有这样的输出:
Connection Successful
Insert Successful
Find Successful
[ { _id: 5a857dd2c940040d85cbe5f2, msg: 'My First Document' } ]
如果您的输出不是这样的,那么缺少的日志会指出您出错的地方。