最佳答案
我最近看了一个关于使用TypeScript的Angular 2教程,但不确定什么时候用接口,什么时候用模型来处理数据结构。
接口示例:
export interface IProduct {
ProductNumber: number;
ProductName: string;
ProductDescription: string;
}
模型示例:
export class Product {
constructor(
public ProductNumber: number,
public ProductName: string,
public ProductDescription: string
){}
}
我想从URL加载JSON数据并绑定到接口/模型。有时我想要单个数据对象,有时我想保存对象的数组。
我应该使用哪一个,为什么?