我在component.ts的功能如下: getImage(name) {
this._productService.getImage(name).subscribe((response) => {
// ??? my problem is here
});
}
而且它在這裏被稱爲 <tr *ngFor="let i of data">
<td>
在一個分量I可使用過濾我陣列以下: // Array of product objects
const result = products.filter(p => p.name.includes('val'));
和產品值保持相同的第一個值,但濾波值存儲在result。 但在下面的代碼,filter()過濾字符串本身的數組: // Array of strings
const result