我想在我的angularjs指令中使用http url作为templateUrl,如下所示:
angular.directive('mydir', function() {
return {
restrict: 'E',
link: function(scope, element, attrs) {
....
},
templateUrl: "example.com/def.html"
}
});
但是在将其更改为上面的url模板后,页面上看不到它。有没有解决方法。