第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

角度指數(shù)未定義

角度指數(shù)未定義

桃花長(zhǎng)相依 2022-09-23 09:14:18
我的應(yīng)用程序中有列表,我需要在刪除成功時(shí)刪除項(xiàng)目,但它返回,因此我的項(xiàng)目不會(huì)從列表中刪除index undefined法典HTML<div *ngIf="groups.length>0">    <ion-item-sliding *ngFor="let group of groups">        <ion-item class="chat-groups">            <ion-avatar slot="start">                <div *ngIf="group.photo != null; else placeholderImage">                <img (click)="openImage(group)" class="gImage" routerDirection="forward" [src]="group.photo">                </div>                <ng-template #placeholderImage>                <img routerDirection="forward" class="gImage" src="../../assets/placeholders/groups.png">                </ng-template>            </ion-avatar>            <ion-label routerDirection="forward" [routerLink]="['/tabs/', 'groups', group.id]">                <h2 [innerHTML]="group.name"></h2>                <h3 [innerHTML]="group.description"></h3>            </ion-label>        </ion-item>        <ion-item-options side="start">            // index is undefined            <ion-item-option color="danger" (click)="leaveGroup(group, $index)">Leave</ion-item-option>        </ion-item-options>    </ion-item-sliding></div>Componentgroups: any[] = [];leaveGroup(group, index) {    this.groupsService.leaveGroup(group.id).subscribe((res: any) => {        console.log('group index: ', index); // undefined        console.log('group: ', group); // gets the group data        console.log('group id: ', group.id); // gets the id        this.groups.splice(index, 1);        Toast.show({            text: res.message        });    });}有什么想法嗎?
查看完整描述

1 回答

?
Cats萌萌

TA貢獻(xiàn)1805條經(jīng)驗(yàn) 獲得超9個(gè)贊

解決

我已經(jīng)改變了我像這樣:*ngFor

*ngFor="let group of groups; index as indexOfelement;"

然后

<ion-item-option color="danger" (click)="leaveGroup(group, indexOfelement)">Leave</ion-item-option>

現(xiàn)在我可以獲取項(xiàng)目索引號(hào)并將其從列表中刪除。


查看完整回答
反對(duì) 回復(fù) 2022-09-23
  • 1 回答
  • 0 關(guān)注
  • 89 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)