1

我刚刚开始,AWS根本无法DynamoDB运行。

我按照教程创建了所有元素并在基本配置文件中AWS设置了权限。DynamoDBlambda

我想知道为什么我没有从 theDB或任何错误消息中得到任何结果。我在代码中放置了一些控制台日志以进行故障排除:

var AWS = require("aws-sdk");
AWS.config.update({
    region: "eu-west-1",
});

var docClient = new AWS.DynamoDB.DocumentClient();
var params = {
    TableName: "cooking_table",
    Key:{
        "data_type": "meal"
    }
};


console.log("Scanning table.");
docClient.scan(params, onScan);
console.log("scan done");

function onScan(err, data) {
    console.log("starting to scan");
    if (err) {
        console.error("Unable to scan the table. Error JSON:", 
 JSON.stringify(err, null, 2));
    } else {
        // print all the movies
        console.log("Scan succeeded.");
        data.Items.forEach(function(movie) {
           console.log(movie.data_type);
        });

        // continue scanning if we have more movies, because
        // scan can retrieve a maximum of 1MB of data
        if (typeof data.LastEvaluatedKey != "undefined") {
             console.log("Scanning for more...");
             params.ExclusiveStartKey = data.LastEvaluatedKey;
             docClient.scan(params, onScan);
        }
    }
}

令人惊讶的是,我没有在 function 中获得任何控制台日志条目onScan

在日志中,我只看到这些行的输出:

console.log("Scanning table.");
console.log("scan done");

但没有错误。

我没有看到我正在做的大错误。

出了什么问题?谢谢。

4

2 回答 2

0

“密钥”不是扫描的有效参数。不完全确定您的数据是什么样的,但也许您想要:

var params = {
    TableName: "cooking_table",
    FilterExpression: "data_type = meal"
};

https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB/DocumentClient.html#scan-property

此外,正如另一个答案中所述,您想要执行类似的操作来实际调用扫描调用,该调用返回一个请求对象:

docClient.scan(params, onScan).send((err, data) => 
{
    console.log("scan actually done for real");
});
于 2018-09-03T07:48:19.837 回答
0

Scan 是异步操作,它在完成时调用回调,所以您的问题是您的 lambda 在该操作完成之前就结束了,这可能就是为什么您只看到这 2 个日志而没有任何错误/问题或结果的原因。

我建议将Promise视为该问题的可能解决方案。

于 2018-09-03T07:52:16.833 回答