我在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还不支持Map。
ES6兼容性表
其他回答
Typescript还不支持Map。
ES6兼容性表
这里有一个例子:
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中声明一个ES6 Map类型?
您需要目标——模块es6。这是不幸的,你可以在这里提出你的关注:https://github.com/Microsoft/TypeScript/issues/2953#issuecomment-98514111
使用库配置选项,您可以樱桃选择映射到您的项目。只需添加es2015。集合到您的lib部分。当你没有库配置时,添加一个默认库,并添加es2015.collection。
所以当你有target: es5时,改变tsconfig。json:
"target": "es5",
"lib": [ "dom", "es5", "scripthost", "es2015.collection" ],