我在typescript中创建了一个类,它的属性是ES6 (ECMAscript 2016) Map,如下所示:
class Item {
configs: ????;
constructor () {
this.configs = new Map();
}
}
我如何在typescript中声明一个ES6 Map类型?
我在typescript中创建了一个类,它的属性是ES6 (ECMAscript 2016) Map,如下所示:
class Item {
configs: ????;
constructor () {
this.configs = new Map();
}
}
我如何在typescript中声明一个ES6 Map类型?
当前回答
不确定这是否是官方的,但这在typescript 2.7.1中为我工作:
class Item {
configs: Map<string, string>;
constructor () {
this.configs = new Map();
}
}
在简单的Map<keyType, valueType>
其他回答
最起码:
tsconfig:
"lib": [
"es2015"
]
如果你想要IE < 11支持,安装一个polyfill如https://github.com/zloirock/core-js: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
你可以在Typescript类中创建一个Map,如下所示
export class Shop {
public locations: Map<number, string>;
constructor() {
// initialize an empty map
this.locations= new Map<number,string>();
}
// get & set functions
........
}
这里有一个例子:
this.configs = new Map<string, string>();
this.configs.set("key", "value");
Demo
是地图现在可在typescript..如果你查看lib.es6.d.ts,你会看到这样的界面:
interface Map<K, V> {
clear(): void;
delete(key: K): boolean;
forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void,thisArg?: any): void;
get(key: K): V | undefined;
has(key: K): boolean;
set(key: K, value: V): this;
readonly size: number;}
它伟大的使用作为一个字典的字符串,对象对..唯一的烦恼是,如果你用它来赋值其他地方的Map.get(键)IDE像代码给你的问题可能是未定义的..而不是创建一个变量的定义检查..简单地转换类型(假设您确定映射具有键-值对)
class myclass {
mymap:Map<string,object>
...
mymap = new Map<string,object>()
mymap.set("akey",AnObject)
let objectref = <AnObject>mymap.get("akey")
Typescript还不支持Map。
ES6兼容性表