1

根据文档,我应该得到一个包含该项目的数据结构,因为它在删除之前(如果没有错误)
我确实检查没有错误,但我得到一个空对象data

    docClient.delete(params, (err, data) => {
    if (err) {
        console.error('Error tring to delete item:' + err);
        callback(err, null); // error
    } else if (!data.Items || data.Items.length == 0) {
        console.info(JSON.stringify(data));
        callback(null, null); // no items
    } else  {
        console.info(JSON.stringify(data));
        callback(null, data.Items[0].ExposeStartTimestamp);
    }
});

两者都打印空 json:{}

4

1 回答 1

9

为了使已删除的数据出现在响应中,请求应包含ReturnValues具有 value的属性ALL_OLD

var params = {
    TableName: 'TableName',
    Key: {
        HouseId: houseId
    },
    ReturnValues: 'ALL_OLD'
};
于 2018-04-09T19:42:31.947 回答