ngfor

    0熱度

    1回答

    我是新的角2.嘗試列出從瀏覽器中選擇的模板表中的文件名。下面是我的代碼 Template.html <input type="file" id="uploadFile" style="display: none" (change)='onClickUploadDocument($event)' multiple> <label for="uploadFile" class="btn btn-pr

    1熱度

    1回答

    我有一個包含一個表的組件,我在tBody內部的一行中調用ngFor,問題是我需要指向我要應用在要運行的表上加載ngFor的最後一個元素之後。 這裏是我的組件 import {Component} from 'angular2/core'; import {InfScrollTableService} from './inf-scroll-table.service' import {HTTP_

    3熱度

    1回答

    我有組件。 @Component({ selector: 'todo-list', directives: [TodoItemRenderer], providers: [TodoService], template: '<div>'+ '<ul class="list-group">'+ '<li [(ngClass)]="item.class" cl

    6熱度

    3回答

    我有一個Angular 2應用程序正在處理客戶和春季休息後端。客戶對象有一個客戶類型,這也是一個對象,我有客戶表單上的下拉菜單,因此對象被存儲爲值,但我無法弄清楚如何選擇正確的客戶類型現有客戶被加載到表單中。 <select class="form-control" required [(ngModel)]="customer.customerType" > <option *ngFor

    2熱度

    2回答

    我想在angularjs2使用ngFor訪問局部變量在HTML模板,下面 <a *ngFor="#facet of facet_data" class="collection-item" (click)="setToSearchBarWithFilter(facet.category)"> {{facet.category}}<span class="badge">{{facet.cou

    3熱度

    3回答

    我正在* ngFor與Ionic 2很好地工作,但我想使用collection-repeat'因爲它更適合於廣泛的數據。 我加載在construtor數據: import {Page, NavController, NavParams} from 'ionic-angular'; import {ListData} from './list-data'; @Page({ templ

    0熱度

    1回答

    處理某些數組項目,但卡住了* ngFor不接受另一個*ngFor提供的動態值。 <table border="2"> <tr> <th rowspan="2">Subject</th> <th colspan="4" *ngFor='#category of json.category_name'>{{category}}</th> <th colspan=

    2熱度

    1回答

    我想顯示局部變量theme的屬性,如theme.name。 這是我*ngFor看起來像 <ul> <li *ngFor="#theme of themes"> <span>theme.name</span> </li> </ul> 我試圖用{{theme.name}}爲好,但也不能工作。

    6熱度

    3回答

    我在計算Angular 2中的ngFor Loop時遇到了問題。我試圖開發一個有3列和動態數量的行的網格。我想遍歷我的數組,並從左到右添加元素,每三個元素都應該跳到下一行。我使用Ionic Framework 2.0。 我的代碼如下所示: <ion-row *ngFor="#m of movies; #i = index" (click)="movieTapped(m)"> <ion-

    0熱度

    1回答

    我有2個組件:CommandListComponent和CommandLineComponent。內CommandListComponent模板,我處理的文本字符串click事件: CommandListComponent模板: <li *ngFor="#command of commandList" class="b-command-list__command"><span (click)="c