本文整理汇总了TypeScript中@angular/common.DecimalPipe类的典型用法代码示例。如果您正苦于以下问题:TypeScript DecimalPipe类的具体用法?TypeScript DecimalPipe怎么用?TypeScript DecimalPipe使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了DecimalPipe类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: describe
describe('transform', () => {
let pipe: DecimalPipe;
beforeEach(() => { pipe = new DecimalPipe('en-US'); });
it('should return correct value for numbers', () => {
expect(pipe.transform(12345)).toEqual('12,345');
expect(pipe.transform(123, '.2')).toEqual('123.00');
expect(pipe.transform(1, '3.')).toEqual('001');
expect(pipe.transform(1.1, '3.4-5')).toEqual('001.1000');
expect(pipe.transform(1.123456, '3.4-5')).toEqual('001.12346');
expect(pipe.transform(1.1234)).toEqual('1.123');
expect(pipe.transform(1.123456, '.2')).toEqual('1.123');
expect(pipe.transform(1.123456, '.4')).toEqual('1.1235');
});
it('should support strings', () => {
expect(pipe.transform('12345')).toEqual('12,345');
expect(pipe.transform('123', '.2')).toEqual('123.00');
expect(pipe.transform('1', '3.')).toEqual('001');
expect(pipe.transform('1.1', '3.4-5')).toEqual('001.1000');
expect(pipe.transform('1.123456', '3.4-5')).toEqual('001.12346');
expect(pipe.transform('1.1234')).toEqual('1.123');
});
it('should not support other objects', () => {
expect(() => pipe.transform({})).toThrowError();
expect(() => pipe.transform('123abc')).toThrowError();
});
it('should throw if minFractionDigits is explicitly higher than maxFractionDigits', () => {
expect(() => pipe.transform('1.1', '3.4-2')).toThrowError(/is higher than the maximum/);
});
});
示例2: describe
describe('transform', () => {
let pipe: DecimalPipe;
beforeEach(() => { pipe = new DecimalPipe('en-US'); });
it('should return correct value for numbers', () => {
expect(pipe.transform(12345)).toEqual('12,345');
expect(pipe.transform(1.123456, '3.4-5')).toEqual('001.12346');
});
it('should support strings', () => {
expect(pipe.transform('12345')).toEqual('12,345');
expect(pipe.transform('123', '.2')).toEqual('123.00');
expect(pipe.transform('1', '3.')).toEqual('001');
expect(pipe.transform('1.1', '3.4-5')).toEqual('001.1000');
expect(pipe.transform('1.123456', '3.4-5')).toEqual('001.12346');
expect(pipe.transform('1.1234')).toEqual('1.123');
});
it('should not support other objects', () => {
expect(() => pipe.transform({}))
.toThrowError(
`InvalidPipeArgument: '[object Object] is not a number' for pipe 'DecimalPipe'`);
expect(() => pipe.transform('123abc'))
.toThrowError(`InvalidPipeArgument: '123abc is not a number' for pipe 'DecimalPipe'`);
});
});
示例3: describe
describe('DecimalPipe', () => {
var pipe: DecimalPipe;
beforeEach(() => { pipe = new DecimalPipe(); });
describe('transform', () => {
it('should return correct value for numbers', () => {
expect(pipe.transform(12345)).toEqual('12,345');
expect(pipe.transform(123, '.2')).toEqual('123.00');
expect(pipe.transform(1, '3.')).toEqual('001');
expect(pipe.transform(1.1, '3.4-5')).toEqual('001.1000');
expect(pipe.transform(1.123456, '3.4-5')).toEqual('001.12346');
expect(pipe.transform(1.1234)).toEqual('1.123');
});
it('should support strings', () => {
expect(pipe.transform('12345')).toEqual('12,345');
expect(pipe.transform('123', '.2')).toEqual('123.00');
expect(pipe.transform('1', '3.')).toEqual('001');
expect(pipe.transform('1.1', '3.4-5')).toEqual('001.1000');
expect(pipe.transform('1.123456', '3.4-5')).toEqual('001.12346');
expect(pipe.transform('1.1234')).toEqual('1.123');
});
it('should not support other objects', () => {
expect(() => pipe.transform(new Object())).toThrowError();
expect(() => pipe.transform('123abc')).toThrowError();
});
});
});
示例4: if
transform(value: number, ...args: any[]): any {
let assetInfo = args.find(a => a instanceof Assets || a instanceof Object) as Assets;
let currency = args.find(a => typeof a === "string") as string;
let showCurrency = args.find(a => typeof a === "boolean");
if (showCurrency === undefined) {
showCurrency = true;
}
if (assetInfo && currency) {
let asset = assetInfo[currency] ? assetInfo[currency] :
(assetInfo['X' + currency] ? assetInfo['X' + currency] : null);
//(assetInfo['Z' + currency] ? assetInfo['Z' + currency] : null));
if (!asset && currency.startsWith('Z') && currency !== 'ZBT') {
return this.currencyPipe.transform(value, currency.substring(1, currency.length), true);
}
else if (!asset) {
return this.decimalPipe.transform(value, '1.5-5');
}
if (asset.assetClass === 'currency' && currency.startsWith('Z') && currency !== 'ZBT') {
return this.currencyPipe.transform(value, currency.substring(1, currency.length), true);
}
let displayDecimals = asset.displayDecimals.toString();
return this.decimalPipe.transform(value, '1.' + displayDecimals + '-' + displayDecimals);
} else if (currency) {
return this.currencyPipe.transform(value, currency.startsWith('Z') ? currency.substring(1, currency.length) : currency, true);
}
return this.decimalPipe.transform(value, '1.2-2');
}
示例5: transform
transform(amount: number, coin: string) {
return (
this.decimalPipe.transform(amount / 1e8, '1.2-6') +
' ' +
coin.toUpperCase()
);
}
示例6: formatFiatAmount
formatFiatAmount(amount: number) {
let value: any;
let sep: any;
let group: any;
let intValue: any;
let floatValue: any;
let finalValue: any;
value = this.decimalPipe.transform(amount);
if (!value) return 0;
sep = value.indexOf(this.formats.DECIMAL_SEP);
group = value.indexOf(this.formats.GROUP_SEP);
if (amount >= 0) {
if (group > 0) {
if (sep < 0) {
return value;
}
intValue = value.substring(0, sep);
floatValue = parseFloat(value.substring(sep));
floatValue = floatValue.toFixed(2);
floatValue = floatValue.toString().substring(1);
finalValue = intValue + floatValue;
return finalValue;
} else {
value = parseFloat(value);
return value.toFixed(2);
}
}
return 0;
}
示例7: if
/**
* แปลง format ตัวเลข
* @param value ตัวเลข
* @param digits จำนวนตำแหน่งทศนิยม
* @param zeroSymbol สัญลักษณ์แทน 0
*/
transform(value: string | number, digits?: string, zeroSymbol?: string): string {
let number: number;
if (typeof value == 'undefined' || value == 'undefined')
number = 0
if (typeof value == 'string') {
number = Number(value);
if (value == 'NaN')
number = 0;
else if (isNaN(number))
return value;
}
else
number = value;
if (isNaN(number))
number = 0;
if (number != 0)
return this.decimalPipe.transform(number, digits);
else {
if (typeof zeroSymbol != 'undefined')
return zeroSymbol;
else
return '0';
}
}
示例8: it
it('should return correct value for numbers', () => {
expect(pipe.transform(12345)).toEqual('12,345');
expect(pipe.transform(123, '.2')).toEqual('123.00');
expect(pipe.transform(1, '3.')).toEqual('001');
expect(pipe.transform(1.1, '3.4-5')).toEqual('001.1000');
expect(pipe.transform(1.123456, '3.4-5')).toEqual('001.12346');
expect(pipe.transform(1.1234)).toEqual('1.123');
expect(pipe.transform(1.123456, '.2')).toEqual('1.123');
expect(pipe.transform(1.123456, '.4')).toEqual('1.1235');
});
示例9: transform
public transform(value: number, precision?: number): string {
if (!precision) {
precision = this.precision;
}
/**
* Min 1 place before the comma and exactly precision places after.
*/
const digitsInfo = `1.${precision}-${precision}`;
return this.decimalPipe.transform(value, digitsInfo);
}
示例10: it
it('should support strings', () => {
expect(pipe.transform('12345')).toEqual('12,345');
expect(pipe.transform('123', '.2')).toEqual('123.00');
expect(pipe.transform('1', '3.')).toEqual('001');
expect(pipe.transform('1.1', '3.4-5')).toEqual('001.1000');
expect(pipe.transform('1.123456', '3.4-5')).toEqual('001.12346');
expect(pipe.transform('1.1234')).toEqual('1.123');
});