英文:
How to Marshall a composite key for GetCommand
问题
以下是代码的中文翻译部分:
我有一个 DynamoDB 表,分区键为 'shop',排序键为 'item'。我想使用 GetItemCommand 来使用这个复合键查找特定的项目。
const params = {
TableName: process.env.DYNAMODB_TABLE_NAME,
Key: marshall({ shop: String(event.pathParameters.shop), item: String(event.pathParameters.item) }),
};
const { Item } = await db.send(new GetItemCommand(params));
console.log("项目:" + Item);
但它返回 undefined。
英文:
I have a dynamo table with a partition key of 'shop' and sort key 'item'. I want to use GetItemCommand to find a particular item using this composite key.
const params = {
TableName: process.env.DYNAMODB_TABLE_NAME,
Key: marshall({shop: String(event.pathParameters.shop),
item: String(event.pathParameters.item) }),
};
const {Item} = await db.send(new GetItemCommand(params));
console.log("item" + Item);
but it returns undefined
答案1
得分: 1
给这个一试
const keys = marshall(
{
shop:event.pathParameters.shop,
item:event.pathParameters.item
})
const params = {
TableName: process.env.DYNAMODB_TABLE_NAME,
Key: keys,
};
console.log(params);
try{
const {Item} = await db.send(new GetItemCommand(params));
console.log("item" + Item);
}catch(e){
console.log(e);
}
英文:
Give this a go
const keys = marshall(
{
shop:event.pathParameters.shop,
item:event.pathParameters.item
})
const params = {
TableName: process.env.DYNAMODB_TABLE_NAME,
Key: keys,
};
console.log(params);
try{
const {Item} = await db.send(new GetItemCommand(params));
console.log("item" + Item);
}catch(e){
console.log(e);
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论