AngularJS iframe 도메인 간 콘텐츠 타임즈 열기 오류 해결 방법

709 단어

다른 영역의 내용을 열 때 다음 오류가 발생했습니다:


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를 사용하는 문제를 해결하였습니다.







좋은 웹페이지 즐겨찾기