无法更新数组aws Dynamo

时间:2016-07-18 14:58:50

标签: javascript json node.js amazon-dynamodb aws-sdk

iam尝试更新json array.i在dynamoDb.i中有一个表,使用put方法将json数据成功插入dynamo。

  

分区键: _id ,键入:S

这是我的json数据保存到数据库中。

{
    "_id": "001",
    "email": "teacher1@gmail.com",
    "class": {
        "student_list": []
    }
}

但我无法使用 电子邮件 键更新json数组 student_list 。  我有以下代码

var AWS = require("aws-sdk");
var docClient = new AWS.DynamoDB.DocumentClient();

var params = {
    TableName: "testTable1",
    Key: {
        "email": "teacher1@gmail.com",
    },
    UpdateExpression: "set class.student_list = list_append (class.student_list, :studentEmail)",
    ExpressionAttributeValues: {
        ":studentEmail": "manaf@gmail.com"
    },
    ReturnValues: "UPDATED_NEW"
};

docClient.update(params, function (err, data) {
    if (err) {
        console.error("Unable to update item. Error JSON:", JSON.stringify(err, null, 2));
    } else {
        console.log("UpdateItem succeeded:", JSON.stringify(data, null, 2));
    }
});

但是我收到了这样的错误消息

Unable to update item. Error JSON: {
  "message": "Invalid UpdateExpression: Incorrect operand type for operator or function; operator or function: list_append, operand type: S",
  "code": "ValidationException",
  "time": "2016-07-18T14:31:44.978Z",
  "requestId": "378NSB5RVB1TNI0PB1Q3OH67V3VV4KQNSO5AEMVJF66Q9ASUAAJG",
  "statusCode": 400,
  "retryable": false,
  "retryDelay": 0
}

与此相关的实际问题是什么?

1 个答案:

答案 0 :(得分:1)

来自文档: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.Modifying.html

操作数类型必须包含在列表中。

"新元素必须包含在列表中,例如将2添加到列表中,操作数将为[2]"