首页 > 问答 > 正文
<p ng-if="info.times>0">重新发送验证码(<span ng-model="info.times">{{info.times}}</span>)</p>
为什么{{info.times}}数值一直是60不变呢,我打印的数值一直是减少的呀。(用console.log()打印了)
我想大声告诉你2017-05-15 17:03:10
ng-model是加在表单元素上的,可以直接这样写<span>{{info.times}}</span>
给我你的怀抱2017-05-15 17:03:10
controller中的代码呢?