热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

用于输入的不工作的Angular2管道-Angular2pipenotworkingforinput

Imusingangular2inbuiltpipepercentinmyHTML我在HTML中使用了angular2内置管道百分比<inputclassibox1

I'm using angular2 inbuilt pipe percent in my HTML

我在HTML中使用了angular2内置管道百分比


its working & display correct data to input box, but when I change the value of a field pipe doesn't work.

它的工作和显示正确的数据到输入框,但当我改变一个字段管道的值不工作。

How to resolve this?

如何解决这个问题?

1 个解决方案

#1


1  

You have reapply filter on your model value on change of _note.StudentPercent input. You could use ngModelChange handler for the same.

在_note的更改时,对模型值重新应用过滤器。StudentPercent输入。同样,您可以使用ngModelChange处理程序。


Code

代码

changeToPercent(percent, format){
   //make sure PercentPipe in declarations & providers of NgModule
   this._note.StudentPercent = new PercentPipe().transform(percent, format)
}

推荐阅读
author-avatar
木卫二
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有