我如何用空格格式化这个@pipe货币?

时间:2018-01-17 17:14:59

标签: angular

我的管道当前打印:

{{ 200 | currency:'BRL':true }} = R$200.00

我需要在200.00之间包含R $之间的空格 会保持正确

{{ 200 | currency:'BRL':true }} = R$ 200.00`
有人可以帮帮我吗?

1 个答案:

答案 0 :(得分:4)

您可以链接自定义管道以添加空格

@Pipe({
    name: 'space'
})
export class SpacePipe implements PipeTransform {
    transform(value: any, args?: any): any {
        return value.replace('R$', 'R$ ');
    }
}

{{ 200 | currency:'BRL':true | space }} // R$ 200.00