问题:
尝试创建 DynamoDB 集。
var docClient = new AWS.DynamoDB.DocumentClient();
var set = docClient.createSet(["Red", "Green", "Blue"]);
console.log(set);
'set' 的正确日志值:
Set {values: Array(3), type: "String"}
type: "String"
values: ["Red", "Green", "Blue"]
__proto__: Object
我在控制台输出中得到什么:
constructor {values: Array(3), type: "String"}
type: "String"
values: ["Red", "Green", "Blue"]
__proto__: Object
更新调用:
var params = {
TableName: "Table",
Key: {
"id": id
},
UpdateExpression: "ADD colors :c",
ExpressionAttributeValues: {
":c": docClient.createSet(["Red", "Green", "Blue"])
},
ReturnValues: "UPDATED_NEW"
}
docClient.update(params, callback);
因为'set'的类型是'constructor'而不是'Set'。尝试更新 DynamoDB 中的集合时出现以下错误。
Error: Invalid UpdateExpression: Incorrect operand type for operator or function; operator: ADD, operator type: MAP
问题:
我真的在寻找任何关于什么会导致这种情况的提示。
我正在使用 webpack 来部署我的应用程序。在开发中运行 webpack 时,我能够获得正确的值,但是当我为生产构建时,它表现出不正确的行为。
这不一定是 AWS 问题。这可能是我缺乏对 javascript 或 webpack 的理解。