我在事件onchange中调用函数update()。我不知道我的代码在哪里。是否需要更改其他滑块的角度?
<div ng-repeat="header in tempParams" style="padding: 5px;">
<h5 ng-show="header.visible">{{header.title}}</h5>
<div ng-show="header.visible">
<ion-slider type="single"
grid="false"
min="header.minV"
max="header.maxV"
from="header.value"
disable="false"
onchange="update()">
</ion-slider>
</div>
</div>
在Ctrl.js中
$scope.update = function () { console.log("read") };