gpt4 book ai didi

angular - 删除空格后,带管道的输入框不会更新值

转载 作者:太空狗 更新时间:2023-10-29 17:59:25 25 4
gpt4 key购买 nike

我创建了一个管道来格式化输入框中的值,如下所示:

1 123

10 123

101 123

2 101 123

23 101 123

123 101 123

当我在输入框中键入内容或按退格键时,管道会提供所需的输出。

问题:当我从输入框中删除空格时,输入框不会更新。

例如如果我将值从 123 123 更改为 123123,则输入框不会更新。

管道:

@Pipe({name: 'formatCurrency'})
export class FormatCurrencyPipe implements PipeTransform{

transform(value: string): string {
//convert to string
value = value.toString();

// remove spaces
value = value.replace(/ /g,'');
console.log('Spaces removed');
console.log(value);

// add spaces
value = value.replace(/\B(?=(\d{3})+(?!\d))/g, ' ');
console.log('Spaces Added');
console.log(value);

return value;
}
}

HTML:

<input type="text" (keypress)="disableSpace($event)" [ngModel]="data.value | formatCurrency" (ngModelChange)="data.value = $event" />

组件:

export class App implements OnInit {
name:string;
data:any = {value: 123345};
constructor() {}

ngOnInit(): void {
this.name = 'Angular2';
}

disableSpace(event: any) {
if (event.charCode && event.charCode === 32 || event.which && event.which === 32) {
event.preventDefault();
}
}
}

笨蛋:https://plnkr.co/edit/j5tmNxllfZxP0EDp2XgL?p=preview

知道为什么会出现这种行为以及如何解决/解决这个问题吗?

最佳答案

好吧,经过深入研究,我终于找到了解决这个问题的方法。

因此,当管道返回新的格式化字符串时,它仍然与之前返回的字符串相同。

因此我们需要使用一些 Angular 魔法来实现这一点。

@Pipe({name: 'formatCurrency'})
export class FormatCurrencyPipe implements PipeTransform{

transform(value: string): string {
//convert to string
value = value.toString();

// remove spaces
value = value.replace(/ /g,'');
console.log('Spaces removed');
console.log(value);

// add spaces
value = value.replace(/\B(?=(\d{3})+(?!\d))/g, ' ');
console.log('Spaces Added');
console.log(value);

return WrappedValue.wrap(value);
}
}

注意管道现在返回 WrappedValue.wrap(value)

这表示管道转换的结果已更改,即使引用未更改。

供引用:https://angular.io/docs/js/latest/api/core/index/WrappedValue-class.html

笨蛋:https://plnkr.co/edit/dhxtZrTeRKm2FSw5DIJU?p=preview

关于angular - 删除空格后,带管道的输入框不会更新值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41762207/

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