更改数据



Angular 2中是否有办法将数据更改为ngmodel键入元素?例如:

<input [(ngModel)]="color" />

如何停止结合颜色,并结合color2(例如)和输入?谢谢!

您可以使用函数实现此行为。类似:

my.component.ts

...
getModelValue(){
    if(contidionA){
        return colorA;
    } else {
        return colorB;
    }
}
...

my.component.html

<input [(ngModel)]="getModelValue()" />

相关内容

  • 没有找到相关文章

最新更新