当前位置:  开发笔记 > 编程语言 > 正文

Typescript变量赋值导致linting错误

如何解决《Typescript变量赋值导致linting错误》经验,为你挑选了1个好方法。

我有一个关于以下使用typescript数组的问题.这一切都很好但是当我通过linter运行时我得到以下错误,我的任务显然是错误的.

对于简单类型,禁止使用"Array"的数组类型.请改用'T []'.

 export let data = [
  {
    "property": "value"
  }
 ];

export interface myInterface {
    property: string;
};

protected _collection: Array;

任何帮助表示赞赏.



1> Nitzan Tomer..:

linter可能只是想让你做:

protected _collection: myInterface[];

类型myInterface[]Array等价,但linter似乎更喜欢第一个.

推荐阅读
罗文彬2502852027
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有