我目前正在使用发电机来管理dynamodb中的记录。
我从客户那里收到了内部人士的集合
insiders: [
{ uid: '123', name: 'Insider A' },
{ uid: '456', name: 'Insider B' },
{ uid: '789', name: 'Insider B' }
]
,我的lambda函数通过insiders
变量接收集合,并且我在每个记录中循环执行。在循环内,我更新记录的位置
module.exports.reorder = async (event) => {
const klass = await getKlass.byEnv(process.env.STAGE, 'insider');
const req = event.body
var insiders = req.insiders;
try {
for (let [index, insider] of insiders.entries()) {
console.log("Insider: ", insider);
console.log("Index: ", index);
await klass.update({ uid: insider.uid }, {
$PUT: {
position: index += 1
}
}, { condition: 'attribute_exists(uid)' })
}
return successResponse.message();
} catch (err) {
console.log("===============");
console.error(err);
console.log("===============");
if (err && err.code == 'ConditionalCheckFailedException') {
return noRecord404.notFound();
}
}
}
当我在本地进行测试但将其部署到AWS Lambda时,此方法工作正常,但尚未更新。我也将console.log
放入循环中,并获得了打印的日志。