该问题的解决方法是将字符串数组转换为实际的数组。具体来说,我们可以使用JavaScript中的split()函数将字符串拆分为字符串数组。下面是代码示例:
在组件中声明字符串数组并使用split()函数将其转换为实际的数组:
export class MyComponent {
strArray: string = "apple,banana,orange";
arr: string[];
constructor() {
this.arr = this.strArray.split(",");
}
}
在模板文件中使用ngFor遍历转换后的数组:
- {{item}}
使用上述方法,我们就可以将字符串数组正确地展示出来了。