[原]AngularJS iframe打开不同域的内容时报错误

<iframe id="myFrame" ng-src="{{url}}" width="100%" height="100%" seamless frameborder="0" ></iframe>

打开不同域的内容时报下面的错误:
Blocked loading resource from url not allowed by $sceDelegate policy

 

app.config(function($sceDelegateProvider) {
   $sceDelegateProvider.resourceUrlWhitelist([
       // Allow same origin resource loads.
       ‘self‘,
       // Allow loading from our assets domain.  Notice the difference between * and **.
       ‘http://media.w3.org/**‘]);
});

 

[参考]: 

http://stackoverflow.com/questions/21884666/angular-js-handling-ng-repeated-html5-video-sce

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。