How to sum two fields in AngularJS and show the result in an label?(如何对 AngularJS 中的两个字段求和并在标签中显示结果?)
问题描述
我的页面上有一个情况.
I have an situation on my page.
我的页面中有两个输入和一个标签.这些标签必须显示这两个输入值的总和.
I have two inputs and an label in my page. These label have to show the sum of these two inputs value.
所以我尝试了以下解决方案:
So I tried below solution:
Sub-Total
<input type="text" ng-model="Property.Field1" />
Tax
<input type="text" ng-model="Property.Field2" />
Total
<label>{{ Property.Field1 + Property.Field2 }}</label>
第一次,当页面完全加载时,标签显示总和但是当我在任何输入中键入一些值时,这些解决方案给了我 Property.Field1
和 Property.Field2
的 CONCATENATION 结果,而不是总和.
At the first time, when the page is totaly loaded, the label shows the sum but when I type some value in any input,
these soution gives me a CONCATENATION result of Property.Field1
and Property.Field2
, instead of the sum.
所以我尝试了这些:
Sub-Total
<input type="text" ng-model="Property.Field1" />
Tax
<input type="text" ng-model="Property.Field2" />
Total
<label>{{ parseFloat(Property.Field1) + parseFloat(Property.Field2) }}</label>
再次没有成功.
如何实现标签中显示的两个输入的总和结果?
How could I achieve the sum result of two inputs shown in the label?
推荐答案
你真的在你的控制器中创建了一个 parseFloat
方法吗?因为您不能简单地在 Angular 表达式中使用 JS,请参阅 Angular 表达式与 JS 表达式.
Have you actually created a parseFloat
method in your controller? Because you can't simply use JS in Angular expressions, see Angular Expressions vs. JS Expressions.
function controller($scope)
{
$scope.parseFloat = function(value)
{
return parseFloat(value);
}
}
也应该可以简单地设置对原始函数的引用:
edit: it should also be possible to simply set a reference to the original function:
$scope.parseFloat = parseFloat;
我也希望它可以与过滤器一起使用,但不幸的是它不是(可能是一个错误,或者我误解了过滤器的工作原理):
I would also expect it to work with filters, but unfortunately it doesn't (might be a bug, or i've misunderstood how filters work):
<label>{{ (Property.Field1|number) + (Property.Field2|number) }}</label>
一种解决方法是使用乘法进行转换:
A workaround would be to use multiplication for casting:
<label>{{ (Property.Field1 * 1) + (Property.Field2 * 1) }}</label>
这篇关于如何对 AngularJS 中的两个字段求和并在标签中显示结果?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何对 AngularJS 中的两个字段求和并在标签中显示
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01