angularjs:如何在angularjs指令

时间:2017-04-03 16:14:17

标签: javascript angularjs angularjs-directive directive

我想在我的angularjs指令中使用http url作为templateUrl,如下所示:

angular.directive('mydir', function() {
       return {
        restrict: 'E',
        link: function(scope, element, attrs) {
           ....
        },
        templateUrl: "example.com/def.html"
    }
});

但是在将其更改为上面的url模板后,页面上看不到它。有没有解决方法。

0 个答案:

没有答案