这不起作用(div永远不会出现):
<div ng-show="parseFloat(vehicle.pricing) > 1">
这项工作:
<div ng-show="vehicle.pricing > 1">
为什么?
答案 0 :(得分:3)
除非您已在$ scope / scope上创建了parseFloat函数,否则它将无法用于DOM。唯一可用的东西是比较和你附加到$ scope / scope的东西。
查看angular提供的过滤器:https://docs.angularjs.org/api/ng/filter可能有一个可以使用的过滤器。