无论如何要为离子范围滑块中的圆形按钮分配默认位置?

Is there anyway to assign a default position for the circular button in an ionic range slider?

我有一个离子滑块,我从中获取值并分配另一个范围变量:

<input type="range" min="0" value="0" max="100" step="25" name="lineProgress" ng-model="progress" ng-change=lineProgress(progress)>

当 progress 的值发生变化时,它会将某些文本分配给显示在其下方的另一个 $scope 变量。

不滑动按钮,默认位置好像在中间

此时未分配 $scope 变量,但我希望按钮一直位于左侧。我想通过赋值,value = 0,它会做到这一点。任何人都知道如何使这项工作?

尝试为 $scope.progess=0 赋值并从输入中删除值字段。

<input type="range" min="0" max="100" step="25" name="lineProgress" ng-model="progress" ng-change=lineProgress(progress)>

在控制器中:

$scope.progress="0";

可能这对我有用you.it。

或者,您可以在 HTML 中使用 ng-initprogress 设置为 0(即 ng-init="progress = 0")。它应该完成同样的事情。