gpt4 book ai didi

javascript - Angular 中 HTML DataList 的奇怪行为

转载 作者:行者123 更新时间:2023-12-02 22:39:31 25 4
gpt4 key购买 nike

我实现了以下简单组件来显示数据列表,并且能够添加新条目。

<h6 *ngIf="withHeader"><label for="select">
{{title}}
</label></h6>
<label *ngIf="!withHeader" [ngClass]="{'required': required}" for="select">
{{title}}
</label>
<input id="select" list="dataList" (change)="dataChanged()" [(ngModel)]="selectedValue"/>
<datalist id="dataList">
<option value=null *ngIf="withButton">{{buttonTitle}}</option>
<option *ngFor="let item of data" [ngValue]="item">{{item[shownProperty] || item}}</option>
</datalist>

如果我在另一个组件中使用该组件的一个实例,它工作得非常好。如果我有一个包含两个 dataList 组件的表单,则这两个组件都将填充相同的数据。

例如 - 如果我有一个包含汽车的列表 A 和一个包含飞机的列表 B,则两个列表都将填充汽车 - 至少如果用户打开下拉列表。

如果我跟踪 DOM 中的数据列表,列表 A 中填充有汽车,B 中填充有飞机 - 理应如此。

输入中指向首先填充的列表的列表标识符是否存在混淆?但如果是这样的话我该如何解决呢?输入的列表属性不允许像这样 [list] 那样调用,以便我可以使用唯一标识符。

更新:

以下内容不起作用,因为如果我使用[list],则会发生以下错误。

任何适用的指令或输入元素均未提供属性列表

HTML:

<input id="select" [list]="dataListId" (change)="dataChanged()" [(ngModel)]="selectedValue"/>
<datalist [id]="dataListId">
<option *ngFor="let item of data" [ngValue]="item">{{item[shownProperty] || item}}</option>
</datalist>

组件.ts

import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';

@Component({
selector: 'data-list',
templateUrl: './data-list.component.html',
styleUrls: ['./data-list.component.scss']
})
export class DataListComponent {
@Input() data: any[];
@Output() selectionChanged = new EventEmitter();
@Input() selectedValue: any;
@Input() dataListId: string;

dataChanged() {
// Change-Logic
}

}

最佳答案

同一个 ID 不能在 HTML 中出现多次。在这种情况下,将选择第一个。创建组件实例后尝试生成 id。您可以在组件上注册一个提供程序工厂,每个创建的实例都会调用该工厂。然后只需在您的组件中注入(inject) id 即可。

const UNIQ_ID_TOKEN = new InjectionToken('ID');
let id = 0;
@Component({
providers: [
{
provide: UNIQ_ID_TOKEN,
useFactory: () => id++;
}
]
})
class SelectComponent {
constructor(
@Inject(UNIQ_ID_TOKEN)
public uniqId: number
) {}
}

并在模板中使用注入(inject)的 uniqId。您可以想出更好的 id 生成方法。

<h6 *ngIf="withHeader"><label [attr.for]="{{'select-'uniqId}}">
{{title}}
</label></h6>
<label *ngIf="!withHeader" [ngClass]="{'required': required}" [attr.for]="select">
{{title}}
</label>
<input [attr.id]="{{'select-'uniqId}}" [attr.list]="{{'dataList-'uniqId}}" (change)="dataChanged()" [(ngModel)]="selectedValue"/>
<datalist [attr.id]="{{'dataList-'uniqId}}">
<option value=null *ngIf="withButton">{{buttonTitle}}</option>
<option *ngFor="let item of data" [ngValue]="item">{{item[shownProperty] || item}}</option>
</datalist>

关于javascript - Angular 中 HTML DataList 的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58629685/

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