作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Angular 的新手,开始研究版本 12,但我陷入了困境。在哪里我想在模板中迭代我的联合数组,但它给我错误。
错误:输入 'IBasketItem[] | IOrderItem[]' 不可分配给类型 'NgIterable'。
这是我要迭代的组件中的联合数组。
@Input() items: IBasketItem[] | IOrderItem[] = [];
这是模板代码
<tr *ngFor="let item of items" class="border-0">
它在“of”关键字下给我一条红线,上面提到的错误
这里是 IBasketItem 接口(interface)
export interface IBasketItem {
id: number;
productName: string;
price: number;
quantity: number;
pictureUrl: string;
brand: string;
type: string;
这是 IOrderItem 接口(interface)
export interface IOrderItem {
productId: number;
productName: string;
pictureUrl: string;
price: number;
quantity: number;
如果有人提出解决方案,我将不胜感激。
最佳答案
Angular 检查应用程序代码中模板中的表达式和绑定(bind)。尝试在 tsconfig.json
文件中设置 "strictTemplates": false
,应该没问题。
关于angular - 如何在 Angular 模板中迭代联合类型数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68822073/
我是一名优秀的程序员,十分优秀!