- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的最终目标是让自动完成工作,但我的问题是:
我如何根据 valueChanges 事件进一步过滤我的数据?
我不仅要寻找正确的代码,还要寻找正确的代码。因为这是我第一次尝试 Angular/React 编码。
目前我有以下代码。
gizmo.html
<mat-form-field>
<input matInput placeholder="Add Gizmo"
#addGizmo
[formControl]="gizmoControl"
[matAutocomplete]="auto"
[matChipInputFor] ="gizmoChipList"
[matChipInputAddOnBlur]="addOnBlur"
(matChipInputTokenEnd)="addGizmo($event)"
/>
</mat-form-field>
<mat-form-field>
<mat-chip-list #tagChipList>
<mat-chip *ngFor="let gimzo of data.gizmos"
[selectable]="isSelectable"
color="accent"
[removable]="isRemovable" (removed)="removeGizmo(gizmo)">{{tag}}
<mat-icon matChipRemove *ngIf="isRemovable">cancel</mat-icon>
</mat-chip>
</mat-chip-list>
</mat-form-field>
<mat-autocomplete #auto="matAutocomplete" (optionSelected)="selected($event)">
<mat-option *ngFor="let gizmo of filterGizmos | async" [value]="gizmo">
{{gizmo.value}}
</mat-option>
</mat-autocomplete>
小发明.ts
gizmoControl = new FormControl();
private filterGizmos: Observable<Gizmo[]>;
filterGizmoData(): Observable<Gizmo[]> {
return this.dataService.findGizmos(new GizmoParameters()).map(x => x.filter(y => this.data.gizmos.includes(y.value)));
};
addGizmo(event: MatChipInputElement){
// Logic to add item
this.filterGizmos = this.filterGizmoData();
};
deleteGizmo(item: string){
//Logic to remove item
this.filterGizmos = this.filterGizmoData();
};
ngOnInit() {
this.dataService.getGizmo(this.gizmoId)
.subscribe(x => {
// Logic to load data for view...
this.filterGizmos = this.filterGizmoData();
});
this.filterGizmos = this.gizmoControl.valueChanges.pipe(map(x => this.filter(x)));
我有一个筹码列表 (data.Gizmos),显示用户已经选择了哪些 gimzos。
在输入中,用户可以选择要添加的小发明,用户可以从芯片列表中删除小发明。发生这种情况时,我确保从可用选项 (filterGizmos) 中添加/删除选定的 gizmos
我已经通读了 Angular Material 示例,但我似乎无法在我的代码中使用自动完成功能。
我已经在构造函数中试过了:
this.filterGizmos = this.gizmoControl.valueChanges.pipe(
startWith(null),
map((name: string | null) => name ? this.filter(name) : this.filterGizmos));
但是我得到了错误:
The 'this' context of type 'void' is not assignable to method's 'this' of type 'Observable<{}>'.
最佳答案
我认为自动完成不起作用,因为 this.filterGizmo
将被 this.filterGizmoData();
覆盖。
代码 this.filterGizmos = this.gizmoControl.valueChanges.pipe(map(x => this.filter(x)));
有可能在订阅之前运行 this.dataService.getGizmo(this.gizmoId)
因为它将异步运行。
我认为当您将数据服务中的值分配给变量并过滤该变量时,这可以解决,例如:
myGizmos: any[];
ngOnInit() {
this.dataService.getGizmo(this.gizmoId).subscribe(data => {
this.myGizmos = data;
this.filterGizmos = this.gizmoControl.valueChanges.pipe(map(x => this.filter(x)));
});
}
另请查看 stackblitz 上的示例:https://stackblitz.com/edit/angular-xqqvek
关于node.js - Angular 5 : How can I further filter my data down based upon the valueChanges event,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50399545/
我是 AngularFire + Firebase 的新手,我正在尝试从 angularfire2 github 上学习教程。 当我执行这段代码时: items: Observable; cons
我正在开发 AngularJS PWA 应用程序(在我的注册组件中有表格) 表单有 3 个步骤: 第一步 名字 姓氏 电子邮件 密码 电话号码 第 2 步 例子 例子 第 3 步 例子 例子 当我的用
使用 angularfire2 开发 Angular5 应用程序。我有一个包含大量项目的列表。当我订阅它时: this.db.list("/list").valueChanges().subscrib
在我的一个页面上,我使用 FormBuilder 在初始化时填写表单。只要输入不为空,每个输入都会得到一个类。这是通过向每个输入添加一个 ngClass 并订阅 FormGroup 的 valueCh
我正在创建一个动态创建的响应式表单。我以可观察对象(来自主题)的形式从服务获取数据,并希望在表单创建后订阅表单的 valueChanges。当我第一次设置它时,我订阅了服务的每个可观察对象和 valu
this.editForm = this.fb.group({ step1: this.fb.group({ transport_type_id: ['', [
我有点不清楚 valueChanges 实际上做了什么——如果我的订阅看起来像这样: ( typescript /角度) this.accountsCollection = this.fire
Winforms 2.0。将 DateTimePicker 粘贴到表单上。默认为今天。单击下拉箭头以显示日历,然后单击“今天”。 ValueChanged 事件确实会触发,即使它已经设置为今天。 我想
我们有一个 Angular 子表单,通过 Valuechanges 发出值。在父组件中,如果子组件的新邮政编码值与以前的邮政编码值不同,我们希望运行任务。 现在,我们正在创建一个变量来存储以前的邮政编
我是 Java 新手,遇到了一些问题,如果这是一个显而易见或经常回答的问题,我很抱歉,但我已经查看了大约 10 个此类类型的其他错误,但无法找出我的问题。我在主程序中的标记行上收到错误,表示构造函数未
如果组合框中的值发生更改,如何在组合查看器中触发事件?并非每个选择都会触发(addSelectionChangedListener)。我只想触发一个事件,仅当当前选择不同的值时才触发,而不是相同的值。
使用键盘上的数字输入值时不会激活事件。它仅在您使用向上和向下箭头时激活。我想要的是,它必须像文本框 textchanged 事件一样在每次键盘敲击时激活。 我尝试了几件事,但用户必须按 Enter 才
在这个简单的 gui 列表上进行选择时,我得到 valueChanged 在鼠标按下时执行两次,鼠标抬起时执行一次。 import groovy.swing.SwingBuilder import j
我正在尝试使用 Adafruit Bluefruit LE(蓝牙 4 模块)与 arduino 通信,一切都已设置并配对等等,但我在 GattCharacteristic 上遇到了 ValueChan
我想用UISlider实时计算一个数字,这是我的方法: @IBAction func HPsliderValueChanged(_ sender: CustomUISlider) { calc
我这里有一个包含两 (2) 列的 JTable。右栏是可编辑的,而另一栏是不可编辑的。 所以,我的问题是,每当用户更改单元格的值时,该特定单元格将更改其单元格颜色。 我想这样做是因为我想让用户知道他/
我的最终目标是制作一个也允许用户输入的下拉菜单。我似乎能做的最好的事情就是在下拉列表旁边添加一个文本框,使其看起来相似,我遇到的问题是,每当我的下拉值发生更改时,我都需要更新文本框。我有一些我一直在玩
假设我有一个 QSpinBox,其中的值为 123.45。如果我手动编辑它并开始删除这五个值,则 valueChanged 会针对值 123.4 被触发。如果我继续删除这四个,就会再次发生。 如果我在
我想创建一个表单,允许用户在五个不同的字段 (NumericUpDown) 中设置一定数量的点。当该点数达到 0 时,用户将无法再添加。 (不过,我仍然希望用户能够删除积分。) 到目前为止,这是我的代
我正在使用 UIDatePicker 用日期更新 UILabel,但我注意到 valueChanged 事件仅在车轮停止转动。 理想情况下,如果用户轻弹一列,我希望标签中的日期随着滚轮旋转而不断更新,
我是一名优秀的程序员,十分优秀!