首頁 >web前端 >js教程 >AngularJS iframe跨域開啟內容時報錯誤的解決方案_AngularJS

AngularJS iframe跨域開啟內容時報錯誤的解決方案_AngularJS

WBOY
WBOY原創
2016-05-16 16:18:101326瀏覽

開啟不同網域的內容時報下面的錯誤:

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的問題,希望大家能夠喜歡

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn