gpt4 book ai didi

javascript - 获取对象属性

转载 作者:行者123 更新时间:2023-12-03 08:35:18 25 4
gpt4 key购买 nike

我是 TypeScript 新手。

如何解决这个问题:

layout[self._swapEntries ? '_rows' : 'rows'].slice(0, layout.numRowsToDraw);

错误:

error TS7017: Index signature of object type implicitly has an 'any' type.

另一个问题:

 let entries = rows.selectAll("g." + Legend.LEGEND_ENTRY_CLASS).data((d) => d);

错误2:

error TS2345: Argument of type '(d: {}) => {}' is not assignable to parameter of type '(datum: {}, index: number, outerIndex: number) => {}[]'.
Type '{}' is not assignable to type '{}[]'.
Property 'length' is missing in type '{}'.

最佳答案

您可以执行以下两项操作之一:

  1. 使用接口(interface)为您的 layout 对象实现强类型定义:
interface ILayout {
[index: string]: string[] | number, // And any other types which your object returns
numRowsToDraw: number
}

var layout = {
numRowsToDraw: 10
};

然后将您访问的属性显式转换为数组:

(<string[]>layout[self._swapEntries ? '_rows' : 'rows']).slice(0, layout.numRowsToDraw);
  • 使用--suppressImplicitAnyIndexErrors标志告诉编译器您希望被允许使用编译时未知的类型访问对象键
  • 关于javascript - 获取对象属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33232372/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com