在 Dynamo DB 中使用项目表达式

Using Project Expressions in Dynamo DB

我有一个 DynamoDB table,我正试图从 table 中获取一列。更具体地说,我只想要列中的不同值。

我正在使用 AWS Amplify 并设置了一个 API 来查询 DynamoDB table。

API中的get方法如下。 其中

  1. tableName - 是一个包含 table.
  2. 名称的变量
  3. Listing_Location 是我要从 table.
  4. 中检索的列
app.get(path, function (req, res) {

  if (userIdPresent) {
    req.body['userId'] = req.apiGateway.event.requestContext.identity.cognitoIdentityId || UNAUTH;
  }

  var queryItemParams = {
    TableName: tableName,
    ProjectionExpression: "#listing_location",
    ExpressionAttributeNames = { 
      '#listing_location': 'Listing_Location'
    }
  };

  dynamodb.scan(queryItemParams, (err, data) => {
    if (err) {
      res.statusCode = 500;
      res.json({ error: 'Could not fetch listing locations : ' + err });
    } else {
      res.json(data.Items);
    }
  });
});

我从前端 React 应用程序发出以下获取请求,其中 apiName 是具有 API 名称的变量。 path 是发出 get 请求的 api 端点。 我正在像这样导入 API

import { Amplify, API } from 'aws-amplify';
  getAllLocations = () => {
    console.log("in getAllLocations");
    API.get(apiName, path).then(response => {
      console.log(response);
    });
  }

你能帮我理解我做错了什么吗?

不敢相信我犯了这个错误

ExpressionAttributeNames = { 

应该

ExpressionAttributeNames : {