作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在本地运行 AWS Dynamo 教程中的以下示例,Step 3: Put, Update, and Delete an Item .
在我的例子中,它是:
val client: AmazonDynamoDBClient = new AmazonDynamoDBClient().withEndpoint("http://localhost:7777")
val dynamoDB: DynamoDB = new DynamoDB(client)
val table: Table = dynamoDB.getTable("Catalog")
try {
val rating: java.util.List[Float] = new java.util.LinkedList[Float]()
rating.add(1)
val newItem: Item = new Item().withPrimaryKey("Title", "Title here").withInt("Country", 1).
withList("Ratings", rating)
val outcome: PutItemOutcome = table.putItem(newItem)
System.out.println("PutItem succeeded:\n" + outcome.getPutItemResult)
} catch {
case exception: Exception => System.out.println(exception.getMessage)
}
输出是:
PutItem succeeded: {}
在本地 DynamoDB 控制台中:
var params = {
TableName: "Catalog",
Key: {
"Title":"Title Here",
}
};
docClient.get(params, function(err, data) {
if (err)
console.log(JSON.stringify(err, null, 2));
else
console.log(JSON.stringify(data, null, 2));
});
输出:
{ "Item": { "Title": "Title Here", "Ratings": [ 1 ], "Country": 1 } }
最佳答案
您需要在 PutItem 请求中将 ReturnValues
设置为 ALL_OLD
以获得返回值,但即便如此,它也只会包含被替换的值。
对于您的代码,您需要执行类似替换的操作
val outcome: PutItemOutcome = table.putItem(newItem)
与
val putItemSpec: PutItemSpec = new PutItemSpec()
.withItem(newItem)
.withReturnValues(ReturnValue.ALL_OLD)
val outcome: PutItemOutcome = table.putItem(putItemSpec)
关于scala - DynamoDB PutItemOutcome#getPutItemResult() 返回空对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36058982/
我正在尝试在本地运行 AWS Dynamo 教程中的以下示例,Step 3: Put, Update, and Delete an Item . 在我的例子中,它是: val client: Amaz
我是一名优秀的程序员,十分优秀!