抱歉,英语是我的第二语言。
这是我的问题。我已将两个文本框绑定到范围。每个文本框都需要在更改时影响另一个文本框。您会明白它会导致冲突。从现在开始,我得到了:
<input type="text" ng-model="celcius" ng-change="farenheit=celcius * 9/5 + 32 || ''">
<input type="text" ng-model="farenheit" ng-change="celcius=(farenheit - 32) * 5/9 || ''">
但它没有正常运作。知道如何欺骗吗?
答案 0 :(得分:0)
您需要使用type =“number”而不是type =“text”,因此ng-change指令中的表达式可以将值计算为数字而不是文本。