如何根据电影数组中的标题和项目 ID 更新数量值 (123)
我只设法更新第一层的值,如名称(大卫),但不知道如何使用数组(电影)的附加过滤器更新第二层。
从:
Item:
{
id: 123,
name: 'David',
movies: [
{
id: 1,
title: 'The lord of the ring',
quantity: 1
},
{
id: 2,
title: 'Star Wars',
quantity: 1
}
]
}
至:
Item:
{
id: 123,
Name: 'David',
movies: [
{
id: 1,
title: 'The lord of the ring',
quantity: 2
},
{
id: 2,
title: 'Star Wars',
quantity: 1
}
]
}
顺便说一句,我在 node.js 中使用 aws DynamoDB 文档客户端,如果你能在更新参数中分享你是如何做到的,那就太好了。