Typescript - 索引表达式参数必须是'string','number','symbol'或'any'类型

时间:2016-02-25 13:44:27

标签: javascript typescript

我正在使用Typescript 1.7.5,并且在以下情况下遇到An index expression argument must be of type 'string', 'number', or 'any'错误:

const settings: any = {};

_.forEach(data, (d, name: string) => { //data is just an object
    settings[name] = {};

    const colors = ColorGenerator.generateColors(Object.keys(d.ch).length);

    _(d.ch)
          .keys()
          .zip(colors)
          .forEach(([channel, color]) => {
              // name and channel are both strings
              settings[name][channel] = { // this line is throwing the error
                  channel,
                  color,
                  visible: true
              };
          }).value();
});

是导致错误的channel变量吗?如何输入并同时对其进行解构?

P.S。我已经省略了不必要的代码,所以如果事情没有意义,请告诉我。

1 个答案:

答案 0 :(得分:3)

似乎TypeScript无法正确猜测类型,因此我们可以使用显式类型声明来帮助它:

// .forEach( ([channel, color]) => {
.forEach( ([channel, color]: [string, string]) => {
如果颜色的类型更具体,例如:

,甚至可能
const colors: any [] = ...

应该有助于确保索引/键通道和支持类型的颜色