$ sceDelegate策略不允许阻止从url加载资源。网址:\\ server \\ directory \ file.html

时间:2017-07-06 17:46:15

标签: javascript angularjs

我已经在网上做了一些阅读,看起来你需要将被调用的网址列入白名单。这是我的代码:

//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上跟随其他响应。

0 个答案:

没有答案