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

问题描述 投票:0回答:2
angularjs angularjs-scope
2个回答
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);
      });
    }
  }
});

选项 2:两种方式绑定到范围属性

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

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();
          }
        });
      }
    }
  }
]);

此标记略有更改为:

<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>

请注意使用

data-slider-bind
属性来指定要绑定的范围属性,并且缺少
data-slider-value
属性。

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


2
投票

我使用attr,它对我有用。试试这个:

attr.data-slider-value="{{slider}}"
© www.soinside.com 2019 - 2024. All rights reserved.