我如何通过带有本地索引的查询命令获取项目,但响应为空。
我的代码:
const client = new DynamoDBClient({});
const input = {
TableName: "...",
IndexName: "LITimestamp",
KeyConditionExpression: 'PK = account#225873187286700#chat'
}
console.log(0, JSON.stringify(input));
const command = new QueryCommand(input);
let res;
try {
res = client.send(command);
} catch(err) {
console.log(1, JSON.stringify(err));
}
console.log(2, JSON.stringify(res));
有人可以帮助我吗,我不明白这里有什么问题
send
命令是async
,所以你必须await
它:
try {
res = await client.send(command);
} catch(err) {
console.log(1, JSON.stringify(err));
}
console.log(2, JSON.stringify(res));