角度绑定在数据属性中不起作用

Raa*_*ood 5 angularjs angularjs-scope

我正在使用一些css html模板,它带有许多html组件,并且具有许多用于各种事物的数据属性.例如对于滑块它有类似的东西

 <div class="slider slider-default">
    <input type="text" data-slider class="slider-span" value="" data-slider-orientation="vertical" data-slider-min="0" data-slider-max="200" data-slider-value="{{ slider }}" data-slider-selection="after" data-slider-tooltip="hide">
</div>
Run Code Online (Sandbox Code Playgroud)

在这里,我试图绑定价值

data-slider-value="{{ slider }}"
Run Code Online (Sandbox Code Playgroud)

但它不起作用.变量'slider'在$ scope中设置为:

   $scope.slider = 80;
Run Code Online (Sandbox Code Playgroud)

当我绑定它时,相同的值80显示为:

 <h4>I have {{ slider }} cats</h4>
Run Code Online (Sandbox Code Playgroud)

我也试过了

    ng-attr-data-slider-value="{{ slider }}" 
Run Code Online (Sandbox Code Playgroud)

它没用.

更新

该指令有类似的东西

function slider() {
    return {
        restrict: 'A',
        link: function (scope, element) {
            element.slider();
        }
    }
};
Run Code Online (Sandbox Code Playgroud)

其中为每个滑块element.slider();调用代码bootstrap-slider.js(从这里).

Gre*_*egL 5

我玩了一段时间,并为您提出了一些选择。查看我的Plunkr以查看它们的运行情况。

选项 1:滑块变化时无需更新范围值

这将适用于您问题中的 HTML。以下是您应该将指令代码更改为的内容。

app.directive('slider', function slider() {
  return {
    restrict: 'A',
    link: function(scope, element, attrs) {
      attrs.$observe('sliderValue', function(newVal, oldVal) {
        element.slider('setValue', newVal);
      });
    }
  }
});
Run Code Online (Sandbox Code Playgroud)

选项 2:以两种方式绑定到 scope 属性

如果您需要在拖动滑块手柄时更新 scope 属性,则应将指令更改为以下内容:

app.directive('sliderBind', ['$parse',
  function slider($parse) {
    return {
      restrict: 'A',
      link: function(scope, element, attrs) {
        var val = $parse(attrs.sliderBind);
        scope.$watch(val, function(newVal, oldVal) {
          element.slider('setValue', newVal);
        });

        // when the slider is changed, update the scope
        // property.
        // Note that this will only update it when you stop dragging.
        // If you need it to happen whilst the user is dragging the
        // handle, change it to "slide" instead of "slideStop"
        // (this is not as efficient so I left it up to you)
        element.on('slideStop', function(event) {
          // if expression is assignable
          if (val.assign) {
            val.assign(scope, event.value);
            scope.$digest();
          }
        });
      }
    }
  }
]);
Run Code Online (Sandbox Code Playgroud)

对此的标记略有变化:

<div class="slider slider-default">
  <input type="text" data-slider-bind="slider2" class="slider-span" value="" data-slider-orientation="vertical" data-slider-min="0" data-slider-max="200" data-slider-selection="after" data-slider-tooltip="hide" />
</div>
Run Code Online (Sandbox Code Playgroud)

请注意使用data-slider-bind属性来指定要绑定到的范围属性,并且缺少data-slider-value属性。

希望这两个选项之一是您所追求的。