我正在尝试将联系号码更改为角度2
中的特定格式(mymobile number).format(xxx-xxx-xxxx);
但它不起作用。 格式中的值是动态的。
答案 0 :(得分:0)
您可以使用管道
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'contactFormat'
})
export class SortingPipe implements PipeTransform {
transform(value: any): any {
// Do your transformation here
}
}
并在您的HTML中
{{mymobile.number | contactFormat}}