Angular - 没有$ scope的指令中的引用范围变量?

时间:2015-10-04 01:46:06

标签: javascript angularjs

我正在尝试在输入到我的指令中的数组中显示第一个图像,但是,我不明白为什么这不起作用。你能解释一下吗?

Script.js文件:

angular.module('app',[])

.controller('MyController', function() {
  var self = this;
  self.imageList=[
    'https://upload.wikimedia.org/wikipedia/commons/3/3d/Polar_Bear_AdF.jpg',
    'http://www.polarbearsinternational.org/sites/default/files/styles/media_full/public/00473-10104_0.jpg?itok=uv9Mr5rz',
    'http://www.polarbearsinternational.org/sites/default/files/styles/inside_full/public/sca-000005.jpg?itok=7HybQm2o'
  ];
})

.directive('myImageGallery', function(){
  return {
    restrict: 'E',
    scope:{
      images: '='
    },
    controller: function() {
    },
    controllerAs: 'vm',
    template: '<ul><img images="vm.images" ng-src={{ vm.images[0] }}</li></ul>'
  }
})

HTML:

                                 

<body ng-app="app">
  <div ng-controller="MyController as myCtrl">
    <my-image-gallery images="myCtrl.imageList"></my-image-gallery>
  </div>
</body>

1 个答案:

答案 0 :(得分:3)

您只需要将模板更正为:

template: '<ul><li><img ng-src="{{images[0]}}"></li></ul>'

您错过了ng-src属性周围的引号" ",您可以直接使用images[0]访问该指令的隔离$ scope。您的img标记也缺少结束括号>

这是您在images控制器中访问vm的方法:

scope:{
  images: '='
},
controller: function($scope) {
  this.images = $scope.images;
},
controllerAs: 'vm',
template: '<ul><li><img ng-src="{{vm.images[0]}}"></li></ul>'

您可以使用bindToController自动将指令的隔离范围绑定到控制器。只要确保你确实存在控制器属性,否则会引发错误。

.directive('myImageGallery', function(){
  return {
    restrict: 'E',
    scope:{
      images: '='
    },
    controller: function() {},
    controllerAs: 'vm',
    bindToController: true,
    template: '<ul><li><img ng-src="{{vm.images[0]}}"</li></ul>'
  };
});