gpt4 book ai didi

angular - 在选择模型 Angular 中搜索后未选择先前的数据

转载 作者:行者123 更新时间:2023-12-02 04:06:44 25 4
gpt4 key购买 nike

我正在研究 Angular 选择模型,其中有一个搜索栏,用户可以在其中搜索列表并选择项目,如果用户关闭搜索关键字,则关闭之前选择的值,即在选择模型列表中未选择搜索之前。

在 ts 中搜索代码:

searchUsers(filterValue: string) {
this.previousSelectedValues = this.userSelection.selected;
console.log("came to searchUsers",filterValue);
this.searchKey = filterValue;
let params = { 'searchData': this.searchKey}
this.commCenterService.getSearchedUsers(params).subscribe((res)=>{
console.log("Search Response: Users",res);
this.users = res;
console.log("previous selected fields",this.userSelection.selected);
if(filterValue == ""){
this.previousSelectedValues.forEach(row => this.userSelection.select(row));
}
this.dataSource = new MatTableDataSource(this.users);
});
}

选择模型初始化代码:

userSelection = new SelectionModel<AddRecipientsList>(true, []);
/** Whether the number of selected elements matches the total number of rows. */
isAllSelected() {
const numSelected = this.userSelection.selected.length;
const numRows = this.dataSource.data.length;
return numSelected === numRows;
}
/** Selects all rows if they are not all selected; otherwise clear selection. */
masterToggle() {
this.isAllSelected() ?
this.userSelection.clear() :
this.dataSource.data.forEach(row => this.userSelection.select(row));
}
/** The label for the checkbox on the passed row */
checkboxLabel(row?: PeriodicElement): string {
if (!row) {
return `${this.isAllSelected() ? 'select' : 'deselect'} all`;
}
}

HTML:

<div fxFlex="auto" fxLayoutAlign="start center" fxLayoutGap="10px">
<mat-form-field fxFlex="100" appearance="outline">
<input matInput type="text" (keydown.enter)="searchUsers(value)" [(ngModel)]="value">
<mat-label fxLayoutAlign="start center">
<mat-icon class="s-16">search</mat-icon>Search by Recipient Name, Email
</mat-label>
<button mat-button *ngIf="searchKey" matSuffix mat-icon-button aria-label="Clear" (click)="value=''; searchUsers(value);">
<mat-icon class="s-16">close</mat-icon>
</button>
</mat-form-field>
</div>

<div>
<mat-table [dataSource]="dataSource" class="display-table">
<!-- Checkbox Column -->
<ng-container matColumnDef="select">
<mat-header-cell *matHeaderCellDef>
<mat-checkbox (change)="$event ? masterToggle() : null"
[checked]="userSelection.hasValue() && isAllSelected()"
[indeterminate]="userSelection.hasValue() && !isAllSelected()" [aria-label]="checkboxLabel()">
</mat-checkbox>
</mat-header-cell>>
<mat-cell *matCellDef="let row">
<mat-checkbox (click)="$event.stopPropagation()" (change)="$event ? userSelection.toggle(row) : null"
[checked]="userSelection.isSelected(row)" [aria-label]="checkboxLabel(row)">
</mat-checkbox>
</mat-cell>>
</ng-container>
<!-- recepientName Column -->
<ng-container matColumnDef="recepientName">
<mat-header-cell *matHeaderCellDef> recepient Name </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.name}} </mat-cell>
</ng-container>
<!-- recepientEmail Column -->
<ng-container matColumnDef="recepientEmail">
<mat-header-cell *matHeaderCellDef> recepient Email </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.email}} </mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>
</div>

我可以从 this.userSelection.selected 获取我之前选择的列表

我的选择/之前选择的列表如下:

previous selected fields 
0:
email: "email1@example.com"
name: "some name"
1:
email: "email2@example.com"
name: "some name"

这是如何工作的?任何想法?谢谢。

最佳答案

SelectionModel 保存对对象的引用。因此,当您在 searchUsers 函数中重新初始化 this.dataSource 时,对 this.userSelection 中实际对象的引用就会丢失。为了在您的用例中克服这个问题,您必须使用新的 this.dataSource

中的新对象重新初始化 this.userSelection

但是,由于您的搜索返回不同的列表;可能无法在新的搜索结果中找到以前的用户项目。在这种情况下,我建议使用原始值(充当用户对象的唯一 ID)来将元素保留在 SelectionModel 中。这样;

selection.toggle(row.email) /** when selecting/de-selecting elements*/

selection.isSelected(row.email) /** when checking if an element is selected */

请注意;我建议删除主切换以选择/取消选择所有元素,因为您的列表在每次搜索时都会发生变化,并且从用户的 Angular 来看,选择/取消选择不同列表中的所有元素似乎有点含糊。

我还在这里创建了一个演示;

https://stackblitz.com/edit/angular-e9brcp

在您的 html 中,更新此部分

<mat-checkbox (click)="$event.stopPropagation()" (change)="$event ? userSelection.toggle(row) : null" 
[checked]="userSelection.isSelected(row)" [aria-label]="checkboxLabel(row)">
</mat-checkbox>

到此

<mat-checkbox (click)="$event.stopPropagation()" (change)="$event ? userSelection.toggle(row.email) : null" 
[checked]="userSelection.isSelected(row.email)">
</mat-checkbox>

关于angular - 在选择模型 Angular 中搜索后未选择先前的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56528670/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com