18
ไม่สามารถผูกกับ 'ngForOf' เนื่องจากไม่ใช่คุณสมบัติที่รู้จักของ 'tr' (รุ่นสุดท้าย)
ฉันใช้ Angular2 Final release (2.1.0) เมื่อฉันต้องการแสดงรายชื่อ บริษัท ฉันพบข้อผิดพลาดนี้ ในfile.component.ts: public companies: any[] = [ { "id": 0, "name": "Available" }, { "id": 1, "name": "Ready" }, { "id": 2, "name": "Started" } ]; ในfile.component.html: <tbody> <tr *ngFor="let item of companies; let i =index"> <td>{{i}}</td> <td>{{item.name}}</td> </tr> </tbody>