首页 > 语言 > JavaScript > 正文

AngularJS iframe跨域打开内容时报错误的解决办法

2024-05-06 16:15:15
字体:
来源:转载
供稿:网友
这篇文章主要介绍了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/**']);
});

 

很简单的方法就解决了angularjs跨域使用iframe的问题,希望大家能够喜欢


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选