也有类似的问题
是否有办法在angular2绑定中使用数学函数?
示例<div class="partition-panel">
<b class="pull-left">{{Math.round(variable/12*2)}}</b>
<b class="pull-right">{{Math.round(variable/12*2)}}</b>
</div>
当尝试使用这个时,我得到了错误
Cannot read property 'round' of undefined
对于angular1
你可以试试:
@Component({
selector: 'my-app',
template: `
<div>
<h2>Hello {{math.round(number)}}</h2>
</div>
`,
})
export class App {
number = 2.5;
math = Math;
}
演示对于Angular模板中的四舍五入数字,你可以使用DecimalPipe: {{ value | number }}
查看https://angular.io/api/common/DecimalPipe
中所有舍入选项对于所有内置管道,请勾选https://angular.io/api?type=pipe