我要存储的数据属性是 threadId 、 threadType (sms, livechat ,fb) , createat 和 updateat 我如何定义 threadType 我遵循这个过程但输出显示所有类型的 threadType?
以及如何确定时间?这是手动输入有什么方法可以获取系统时间?
var doClient = new AWS.DynamoDB.DocumentClient();
var DynamoDB = new AWS.DynamoDB({});
var table = "thread";
var threadId = "3";
var threadType = "livechat";
var createDate = "11:38";
var updateDate = "12:00";
var channelName = "three";
var params = {
TableName : table,
Item:
{
"threadId" : threadId,
"threadType" : { "SS": ["sms", "livechat" ,"fb"] },
"createDate" : { 'S' : createDate },
"updateDate" : { 'S' : updateDate },
"channelName" :{'S' : channelName }
}
};
console.log("Adding a new item...");
doClient.put(params, function(err, data) {
if (err) {
console.error("Unable to add item. Error JSON:", JSON.stringify(err, null, 2));
} else {
console.log("Added item:", JSON.stringify(data, null, 2));
}
});
我只需要在线程类型的结果中显示实时聊天,因为在此插入中我需要实时聊天