如何在 angular api 调用中显示嵌套数组对象

How to display nested array object in angular api call

<div *ngFor="let item of category">
    {{item.categories.categories.id}}
</div>

这是从 api 中获取的数据。通过嵌套数组我无法显示此数据

这个怎么样

<div *ngFor="let item of category">
   <div *ngFor="let subItem of item.categories">
       {{subItem.categories.id}}
   </div>
</div>

说明:

由于有嵌套数组,内层数组需要重新循环