在我的购物车应用程序中,我从服务器获得价格和百分比的报价。 我需要将价格值和百分比值与Rs区分开来。和%。
这是我在控制器中的代码:
if(result.type == 'Price'){
$scope.invoice_amt = $scope.invoice_amt - result.offer ;
}
else if(result.type == 'Percentage'){
$scope.invoice_amt = $scope.invoice_amt * result.offer/100;
}
我在HTML中获得了{{invoice_amt}}的价值 如何在rs中显示优惠。和百分比。
答案 0 :(得分:0)
您必须使用货币过滤器,以下示例将以卢比(₹)
打印 Invoice Price<span>{{invoice_amt | currency:"₹"}}</span>
百分比相关点在以下链接中提及
Angular calculate percentage in the html
在示波器中再使用一个变量来检查类型,并根据该逻辑编写。请参阅Angular文档 https://docs.angularjs.org/api/ng/filter/currency