我参考了Ionic - Horizontal scroll tab for Categories的答案。
有人能告诉我category.model中应该包括什么吗?

最佳答案

category.model是具有CategoryModel接口的文件。
它应该有:

export interface CategoryModel {
  id: number,
  name: string
  // add more things here based on your need
}

在此处阅读有关接口的更多信息:typescript interfaces

10-05 20:51