如何在联系电话号码上应用格式

时间:2017-06-30 10:08:03

标签: angular format

我正在尝试将联系号码更改为角度2

中的特定格式
(mymobile number).format(xxx-xxx-xxxx);

但它不起作用。 格式中的值是动态的。

1 个答案:

答案 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}}