声明具有显式类型node.js的字典

时间:2017-12-29 18:13:17

标签: javascript node.js dictionary

我使用node.js执行此操作:

var cart = {}

在for循环中我做

cart[id] = []
cart[id].push(element)

当然,购物车中总会有一个元素。

我想做类似的事情:

var cart: {'':[]} = {}

有一种巧妙的方法吗?

2 个答案:

答案 0 :(得分:2)

您可以初始化包含如下元素的数组:

cart[id] = [element];

答案 1 :(得分:2)

 class Dictionary extends Map {
   constructor(){
     super();
   }
   add(id, data){
     if(this.has(id)){
       this.get(id).push(data);
     }else{
       this.set(id, [data]);
     }
     return this;
   }
}

所以可以这样做:

const dictionary = new Dictionary();
dictionary
  .add(1, "el")
  .add(2,"el")
  .add(1,"el2");

console.log(dictionary.get(1));