0
 <pre> {{((itemInfoForm.controls['quantity'].value) + (selected_item.quantity))}}</pre>

输出:10+10=1010

预期结果:10+10=20

4

2 回答 2

1

只需创建一个方法并传递参数并以这样的数字形式返回

 <pre> 
  {{changeType(itemInfoForm.controls['quantity'].value) + changeType(selected_item.quantity)}}
 </pre>

 ......//and in your controller side write function like this
 changeType(val){
    return +(val);
  }

Working Plunker

于 2017-08-23T09:49:52.713 回答
0

尝试下面的代码,使用 parseInt 将它们转换为数字

{{parseInt(itemInfoForm.controls['quantity'].value) + parseInt(selected_item.quantity)}}
于 2017-08-23T06:02:07.007 回答