我在使用AWS DynamoDb JS SDK v2.4.9时遇到问题。我想使用DocumentClient类而不是较低级别的DynamoDb类,但是不能使它工作。
这有效:
function testPutItem( callback ) {
var tableName = 'todos';
var params = {
TableName: tableName,
Item: {
user_id: { S : userId },
id: { N : msFromEpoch }, // ms from epoch
title: { S : makeRandomStringWithLength(16) },
completed: { BOOL: false }
}
};
var dynamodb = new AWS.DynamoDB();
dynamodb.putItem(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else {
console.log(data); // successful response
if (callback) callback(data);
}
});
}
这不起作用,并为每个属性提供错误InvalidParameterType: Expected params.Item[attribute] to be a structure
- 就像DocumentClient期望与DynamoDb输入相同:
function testPutItem( callback ) {
var tableName = 'todos';
var params = {
TableName: tableName,
Item: {
user_id: userId,
id: msFromEpoch,
title: makeRandomStringWithLength(16),
completed: false
}
};
console.log(params);
var docClient = new AWS.DynamoDB.DocumentClient({region: 'us-east-1'});
docClient.put(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else {
console.log(data); // successful response
if (callback) callback(data);
}
});
}
有谁知道我做错了什么?
答案 0 :(得分:0)
我曾经遇到同样的问题,
请先尝试使用简单的对象,因为属性中有一些特殊字符,请参阅我的示例:
这会产生错误
InvalidParameterType:期望的params.Item [attribute]是一个结构
var Item = {
domain: "knewtone.com",
categorie: "<some HTML Object stuff>",
title: "<some HTML stuff>",
html: "<some HTML stuff>""
};
但是当我用结构化的Html,简单的字符替换HTML内容时,它可以正常工作
var Item = {
domain: "knewtone.com",
categorie: $(categorie).html(),
title: $(title).html(),
html: $(html).html()
};