在我的angular2 app中,我想创建一个以数字为键并返回一个对象数组的地图。我目前正在以下列方式实施,但没有运气。我应该如何实现它,还是应该为此目的使用其他数据结构?我想使用地图,因为它可能很快?
声明
private myarray : [{productId : number , price : number , discount : number}];
priceListMap : Map<number, [{productId : number , price : number , discount : number}]>
= new Map<number, [{productId : number , price : number , discount : number}]>();
用法
this.myarray.push({productId : 1 , price : 100 , discount : 10});
this.myarray.push({productId : 2 , price : 200 , discount : 20});
this.myarray.push({productId : 3 , price : 300 , discount : 30});
this.priceListMap.set(1 , this.myarray);
this.myarray = null;
this.myarray.push({productId : 1 , price : 400 , discount : 10});
this.myarray.push({productId : 2 , price : 500 , discount : 20});
this.myarray.push({productId : 3 , price : 600 , discount : 30});
this.priceListMap.set(2 , this.myarray);
this.myarray = null;
this.myarray.push({productId : 1 , price : 700 , discount : 10});
this.myarray.push({productId : 2 , price : 800 , discount : 20});
this.myarray.push({productId : 3 , price : 900 , discount : 30});
this.priceListMap.set(3 , this.myarray);
this.myarray = null;
如果我使用this.priceList.get(1);
答案 0 :(得分:56)
首先,为对象定义一个类型或接口,它会使事情更具可读性:
dependencies {
compile 'com.gluonhq:charm:4.2.0'
}
jfxmobile {
downConfig {
version '3.1.0'
plugins 'browser'
}
android {
manifest = 'src/android/AndroidManifest.xml'
}
ios {
infoPList = file('src/ios/Default-Info.plist')
forceLinkClasses = [
'com.gluonhq.**.*',
'javax.annotations.**.*',
'javax.inject.**.*',
'javax.json.**.*',
'org.glassfish.json.**.*'
]
}
}
您使用了大小为1的a tuple而不是数组,它应该如下所示:
type Product = { productId: number; price: number; discount: number };
所以现在这很好用:
let myarray: Product[];
let priceListMap : Map<number, Product[]> = new Map<number, Product[]>();
答案 1 :(得分:5)
您也可以完全跳过创建字典。我用下面的方法来解决同样的问题。
mappedItems: {};
items.forEach(item => {
if (mappedItems[item.key]) {
mappedItems[item.key].push({productId : item.productId , price : item.price , discount : item.discount});
} else {
mappedItems[item.key] = [];
mappedItems[item.key].push({productId : item.productId , price : item.price , discount : item.discount}));
}
});
答案 2 :(得分:2)
最简单的方法是使用记录类型记录<编号,productDetails>
interface productDetails {
productId : number ,
price : number ,
discount : number
};
const myVar : Record<number, productDetails> = {
1: {
productId : number ,
price : number ,
discount : number
}
}