我已经在网上做了一些阅读,看起来你需要将被调用的网址列入白名单。这是我的代码:
//Get the module.
var application = angular.module('editApp');
//Create the directive
application.directive("testDirective", function () {
return {
templateUrl: "\\\\server\\directory\\file.html"
};
});
//Add the url to the whitelist.
application.config(function ($sceDelegateProvider) {
$sceDelegateProvider.resourceUrlWhitelist(['self','\\\\server\\directory\\file.html']);
});
我有什么遗失的东西吗?我以为我正确阅读了所有文档,并在stackoverflow to-a-T上跟随其他响应。