0

我有一个现有的表,它有 10 个字段。字段是这样的:

AuthID, UserID, Age, Job, .etc

该表存储我的用户的数据。“AuthID”是主键,“UserID”是全局二级索引。

当我通过 AuthID 获取项目时,一切都很好。但我无法通过 UserID 获取项目。我尝试了 GetItem、Query 和 Scan 方法,但在所有三种方法中都失败了。

我需要能够使用我在下面编写的这 3 种方法获取数据:

1 - Get user data by AuthID (It's already works fine)
2 - Get user data by UserID
3 - Get user data by AuthID and UserID both

AuthID 和 UserID 是唯一的。有人可以指出我该怎么做的正确方法吗?

4

1 回答 1

1

我在文档中进行了很多搜索,发现如果您需要获取单个项目,即使在使用全局二级索引时也不能使用 get 或 getItem 方法。可以使用查询方法。具有全局二级索引的查询方法示例是

let params = {
  TableName: "Users",
  IndexName: "your-index",
  ExpressionAttributeValues: {
    ":v1": "myid"
  }, 
  KeyConditionExpression: "my_partition_key_in_gsi = :v1", 
};
 dynamodb.query(params, function(err, data) {
   if (err) console.log(err, err.stack); // an error occurred
   else     console.log(data);           // successful response
 });
于 2021-04-08T14:58:38.950 回答