ngfor

    0熱度

    1回答

    其實我有我想動態改變數組循環的情況。 export interface City { street: Street[]; country: Country[]; } <div> <div (click)="OnClick()">Street</div> <div (click)="OnClick()">Country</div> </div> <

    1熱度

    1回答

    我有一個非常簡單的類 export class Foo { name: string; index: number; toFullString(): string { return `${this.name} | ${this.index}`; } } 這是我ngFor: <div *ngFor="let foo of foos">

    0熱度

    2回答

    我有一個表,<tr>與ngFor循環。我只想顯示<tr>,它與使用<select>的雙向數據綁定屬性的值相匹配。 當應用程序第一次加載時,它工作正常,但當我更改select選項視圖不會根據需要呈現。 __________CODE BELOW__________ PLUNKER CODE HTML <label> Hours <select [(ngModel)]="

    1熱度

    1回答

    排序源我有約會 export class DashboardComponent implements OnInit { appointments: IAppointment[]; ... 的陣列,並且我通過列表發送到列表組件 <div class="col-md-6"> <appointment-list [appointments]="appointments"

    -1熱度

    1回答

    我是新來的代碼Angular 2.我的問題是如何顯示正確格式的JSON格式A.如圖所示,結果包括我想要顯示的整個對象(名爲Atom)。 如果JSON格式看起來像B,我可以使用ngFor顯示它。但是,在Json格式A中,我必須從結果中顯式創建多個Atom對象,然後使用NgFor顯示它們。 我沒有足夠的關於Angular 2和JSON的知識,如果你對此有一些想法,你能否給我一些指導,以及哪種方式可能是

    7熱度

    1回答

    我需要通過更改下拉列表中的類別來過濾ngFor循環內的項目。因此,當從列表中選擇特定類別時,應只列出包含該類別的項目。 HTML模板: <select> <option *ngFor="let model of models">{{model.category}}</option> </select> <ul class="models"> <li *ngFor="let

    2熱度

    1回答

    我有一個包含2列的列表,我希望左邊顯示偶數和奇數。 目前我遍歷每列的整個列表,並用ngIf =「odd」或甚至過濾。 我可以讓ngFor只能做和觀看偶數或奇數指數嗎? 會大大提高性能嗎?我不知道當一半的DOM元素被納入時是多少負擔。 該列表不會頻繁更改,但當它發生更改時,它會完全更改。

    0熱度

    2回答

    如何使用ngModel對ngFormat重複的多個表單進行輸入? Angular2給我錯誤,當我試圖這樣做。有問題的代碼 Error: Permission denied to access property "rejection" 實例塊: <div *ngFor="let item of items"> <form name="itemForm"> {{item.name

    6熱度

    1回答

    我開始使用Angular2(最終版本),我遇到了一些問題* ngFor。 我已經建立了以下組件樹: 主 - >儀表板 - >提醒 Unhandled Promise rejection: Template parse errors: Can't bind to 'ngForOf' since it isn't a known property of 'div'. ("<div class="ite

    0熱度

    1回答

    我有一個ngFor循環,看起來像這樣(簡化,以便更容易跟蹤): <div *ngFor="let c of customers"> <button class="save green-button" type="button" (click)="editCustomer(c.CustomerId, method.value)">Save</button> <select *n