以下代码在nodejs 6.1中正常工作
console.log('Starting function registration');
const AWS = require('aws-sdk');
AWS.config.update({region: 'eu-central-1'});
const docClient = new AWS.DynamoDB({apiVersion: '2012-10-08'});
exports.handler = function(event, context, callback) {
var params = {
'TableName' : 'services',
'Item': {
'name': {S: 'test'},
'phone': {S: '0742324232'},
'available': {BOOL: true}
}
};
docClient.putItem(params, function(err, data) {
if (err) {
console.log("Error", err);
callback(err);
} else {
console.log("Success", data);
callback(data);
}});
};
但是,当尝试以nodejs 8.1样式使用它时,它不会向数据库写入任何内容:
console.log('Starting function registration');
const AWS = require('aws-sdk');
AWS.config.update({region: 'eu-central-1'});
const docClient = new AWS.DynamoDB({apiVersion: '2012-10-08'});
exports.handler = async (event, context, callback) => {
var params = {
'TableName' : 'services',
'Item': {
'name': {S: 'test2'},
'phone': {S: '0742324232'},
'available': {BOOL: false}
}
};
var {err, data} = await docClient.putItem(params);
return data;
};
我觉得我缺少有关异步/等待的用法,但无法弄清楚。使用nodejs 8.1和lambda函数将项目写入DynamoDB的正确方法是什么?
答案 0 :(得分:4)
它不适用于原告async / await,因为putItem(或者,如果您通过aws-sdk使用,通常是任何dynamdb方法)是一种回调方法,它将返回数据和错误。异步/等待用于承诺而不是回调。
您可能希望简化dynamodb方法,使其与async / await一起使用。