2017-03-07 18 views
1

No 'Access-Control-Allow-Origin' header에 관한 많은 스레드가 있습니다. 내 질문은 plunker에서 이것을 해결하는 방법에 관한 것입니다.플 런커에 'Access-Control-Allow-Origin'헤더가 없습니다.

plunker에 코드를 삽입하여 외부 HTML 파일을로드하려고합니다. 오류가 발생했습니다. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://run.plnkr.co' is therefore not allowed access.

Chrome을 open /Applications/Google\ Chrome.app --args --disable-web-security 님이 출시하려고 시도했지만 도움이되지 않았습니다.

누구나 외부 HTML 파일을로드하는 것을 피할 수있는 해결 방법이 있습니까?

답변

1

https://cors-anywhere.herokuapp.com/과 같은 개방형 CORS 프록시를 사용할 수 있습니다.

작동 방식은 직접 https://site.to.request으로 요청하는 대신 https://cors-anywhere.herokuapp.com/https://site.to.request으로 요청하십시오.

https://cors-anywhere.herokuapp.com/ 프록시는 필요한 CORS 헤더를 추가합니다.

소스에서 직접 인스턴스를 실행할 수 있습니다. https://github.com/Rob--W/cors-anywhere/