angular2绑定中的数学函数



是否有办法在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

相关内容

  • 没有找到相关文章

最新更新