9

基本上,我想在 angular 操作 DOM 后测量元素的宽度。所以我想为此使用 $timeout ,但它总是让我出错。

HTML

   <div ng-app="github">
      <ul mynav>
        <li ng-repeat="nav in navItems">{{nav.name}}</li>
      </ul>

      </div>
    </div>

CSS

ul,li {
  display:inline-block;
}
li {
  margin-right:1em;
}

JS

(function() {
  angular.module('github', [])
    .directive('mynav', function($window) {
      return {
        restrict: 'A',
        link: function(scope, element, attrs, timeout) {
          scope.navItems = [{
            "name": "home"
          }, {
            "name": "link1"
          }, {
            "name": "link2"
          }, {
            "name": "link3"
          }];
          timeout(function() {
            console.log($(element).width());
          })
        }

      }
    });
})();
4

3 回答 3

14

link函数不是注入依赖项的正确位置。它定义了如下所示的参数序列。你不能把依赖放在那里。

link(scope, element, attrs, controller, transcludeFn) {

在指令中注入$timeout依赖项function

(function() {
  angular.module('github', [])
    .directive('mynav', function($window, $timeout) { //<-- dependency injected here
      return {

然后只需使用注入$timeout内部link函数

$timeout(function() {
    console.log(element.width());
})
于 2016-08-26T10:39:23.863 回答
-1
setInterval(function(){
    // code here
    $scope.$apply();
}, 1000); 

包含 $apply 是为了提醒您,由于这是一个外部 jQuery 调用,您需要告诉 Angular 更新 DOM。

$timeout 作为 Angular 版本会自动更新 DOM

于 2016-08-26T12:24:49.727 回答
-2

只需将 timeout 替换为 setinterval ,如下所示:

(function() {
  angular.module('github', [])
    .directive('mynav', function($window) {
      return {
        restrict: 'A',
        link: function(scope, element, attrs, timeout) {
          scope.navItems = [{
            "name": "home"
          }, {
            "name": "link1"
          }, {
            "name": "link2"
          }, {
            "name": "link3"
          }];
          setInterval(function() { // replpace 'timeout' with 'setInterval'
            console.log($(element).width());
          })
        }

      }
    });
})();

希望对你有效。

于 2016-08-26T10:41:12.093 回答