AngularJS – 为什么我的指令隔离范围变量未定义?

前端之家收集整理的这篇文章主要介绍了AngularJS – 为什么我的指令隔离范围变量未定义?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下的朋友:

http://plnkr.co/edit/7YUpQ1tEjnUaX01txFcK?p=preview

当我运行它时,templateUrl在范围中未定义.为什么?

我的假设是,它试图在父范围中找到名为template.html的变量,但不能,因此将其分配给undefined.如果是这样,我如何将它作为字符串而不是范围变量传递?

HTML:

<body ng-app="myApp">  
   <div ng-controller="TestCtrl">
      <test-directive ng-model="testModel" 
                      template-url="template.html">
      </test-directive>
   </div>
</body>

.js文件

var app = angular.module("myApp",[]);

app.controller("TestCtrl",function($scope) {
  $scope.testModel = {}
});

app.directive("testDirective",function () {
    return {
        restrict: 'E',scope: {
            model: "=ngModel",templateUrl: "="
        },template: "<div ng-include='templateUrl'></div>",link: function (scope,element,attrs) {
           console.log(scope.templateUrl);  // <-- Shows as undefined
        }
    }
});
只是改变范围:
scope: {
        templateUrl: "@"
    },

你会得到输出’template.html’.

关键是’=’和’@’之间的区别.你可以参考https://docs.angularjs.org/guide/directive.

原文链接:https://www.f2er.com/angularjs/140485.html

猜你在找的Angularjs相关文章