gpt4 book ai didi

html - 读取 angular 的值

转载 作者:行者123 更新时间:2023-11-28 03:56:50 25 4
gpt4 key购买 nike

HTML:

  <mat-icon class="fab fa-raspberry-pi"></mat-icon>
<mat-form-field>
<mat-select placeholder="Rpi">
<mat-option>Choose</mat-option>
<mat-option *ngFor='let pi of myRpis' [(ngModel)]="RpiIp" ngDefaultControl [value]="pi.RPI_IP"
(click)="getPins()">
{{pi.LABEL}}
</mat-option>
</mat-select>
</mat-form-field>

typescript :我有:

  RpiIp = '';

  getPins() {
console.log(this.RpiIp);
this.doneFetching = true;
}

控制台打印一个空值(该值不会改变)。错误在哪里?为什么值没有变化?

最佳答案

您需要将 ngModel 放在 mat-select 上,而不是放在 mat-option

关于html - 读取 <mat-option> angular 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57331015/

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