Angular2中的接口

时间:2016-12-07 10:57:14

标签: angular typescript

我是角色2的新手。任何人都可以清楚地解释我在angular2中的界面概念,如果用一个工作示例解释它是非常有用的。

并且还提供了一些关于如何在实时项目中使用该概念的信息。

感谢。

1 个答案:

答案 0 :(得分:2)

interfaces 是TypeScript概念。它们用于声明类型。

e.g。如果你有person之类的{firstName: "John", lastName: "Dolton"},你可以使用界面声明它:

interface Person {
  firstName: string;
  lastName: string;
}

更多

TypeScript注释的快速推荐:https://basarat.gitbooks.io/typescript/content/docs/types/type-system.html