有没有办法在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
也回答了类似的问题
答案 0 :(得分:47)
你可以试试这个:
@Component({
selector: 'my-app',
template: `
<div>
<h2>Hello {{math.round(number)}}</h2>
</div>
`,
})
export class App {
number = 2.5;
math = Math;
}
答案 1 :(得分:2)
要在Angular模板中四舍五入数字,可以使用DecimalPipe:TopicClient
查看https://angular.io/api/common/DecimalPipe
中的所有舍入选项对于所有内置管道,请检查 https://angular.io/api?type=pipe