1

我正在控制台中测试查询,并希望在我的代码中实现它们。我很好奇如何在我的 Node.js 代码中得到这个。我认为这与它有关,QueryFilter但我很难得到它。

在此处输入图像描述

let params = {
    TableName: tableName,
    KeyConditionExpression:
      'TimeId = :timeId and begins_with ( TypeKey , :typeKey) ',
    QueryFilter: ?,
    ExpressionAttributeValues: {
      ':timeId': `${year}-${week}`,
      ':typeKey': 'GA',
    },
  };
4

1 回答 1

2

查询参数应如下所示

{
  "TableName": "tableName",
  "KeyConditionExpression": "#PK = :timeId And begins_with(#SK, :typeKey)",
  "FilterExpression": "contains(#homeTeam, :team)",
  "ExpressionAttributeValues": {
    ":timeId": {
      "S": "2020-12"
    },
    ":typeKey": {
      "S": "GA"
    },
    ":team": {
      "S": "Value"
    }
  },
  "ExpressionAttributeNames": {
    "#PK": "TimeId",
    "#SK": "TypeKey",
    "#homeTeam": "homeTeam"
  }
}

在学习为 DDB 组合查询时,请查看Amazons NoSQL Workbench。它有一个很好的 GUI 界面用于构建操作(例如更新、删除、查询、扫描等),甚至会生成代码来执行操作。我发现它在你面对的情况下非常有用。

于 2020-11-24T16:21:07.397 回答