标签: javascript arrays typescript ecmascript-6
我需要能够使用变量设置数组的成员,catch是变量定义另一个数组成员的名称。我正在撰写Typescript和ES6。
代码作为变量e传递给数组,但text:键的名称将为e.[variable]。
e
text:
e.[variable]
设置该变量成员的正确格式是什么?
options.push( { key: e.Id, text: e.[variable] } );