AWS DynamoDb DocumentClient - Creating a batchWrite from an array of Items - node.js(AWS DynamoDb DocumentClient - 从项目数组创建 batchWrite - node.js)
问题描述
我正在尝试使用来自项目数组 (JSON) 的 DynamoDB 的 DocumentClient
执行 batchWrite
操作
I'm trying to perform a batchWrite
operation using DynamoDB's DocumentClient
from an array of items (JSON)
这是我的代码:
var items = [];
for (i = 0; i < orders.length; i++) {
var ord = orders[i]; //a simple json object
var item = {
'PutRequest': {
'Item' : ord[i]
}
};
items.push(item);
}
var params = {
RequestItems: {
'my_table_name': items
}
};
var docClient = new AWS.DynamoDB.DocumentClient();
docClient.batchWrite(params, function(err, data) {
if (err) {
console.log('There was a problem putting the items in the table');
context.fail(err);
}
else {
console.log('Items updated in table');
context.done();
}
});
我收到以下错误:
{"errorMessage":"Missing required key 'Item' in
params.RequestItems['my_table_name']
[0].PutRequest","errorType":"MissingRequiredParameter"...
我查看了 文档 但我不明白我在说什么我做错了.
I have looked at the documentation but I can't understand what I am doing wrong.
推荐答案
以下是正确的做法:
function batchWrite(arrayOf25) {
//25 is as many as you can write in one time
var itemsArray = [];
for (i = 0; i < arrayOf25.length; i++) {
var someItem = arrayOf25[i];
var item = {
PutRequest: {
Item: someItem
}
};
if (item) {
itemsArray.push(item);
}
}
var params = {
RequestItems: {
'my_table_name': itemsArray
}
};
//var AWS = require('aws-sdk'); //These should be added at the top
//var docClient = new AWS.DynamoDB.DocumentClient({region: 'us-east-1'});
docClient.batchWrite(params, function(err, data) {
if (err) {
console.log(err);
}
else {
console.log('Added ' + itemsArray.length + ' items to DynamoDB');
}
});
}
这篇关于AWS DynamoDb DocumentClient - 从项目数组创建 batchWrite - node.js的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:AWS DynamoDb DocumentClient - 从项目数组创建 batchWrite - node.js
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01