A-Frame에서 CORS 오류가 발생했습니다.

1650 단어 CORSA-Frame
로컬에서 A-Frame을 사용하여 360도 카메라로 찍은 사진을 웹에 표시하려고하면,

index.html
<!doctype html>
 <html>
  <head>
   <meta charset="utf-8">
   <title>ページのタイトル</title>
     <script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
  </head>
  <body>
   <a-scene>
        <a-sky src="pic1.jpeg" rotation="0 0 0"></a-sky>
   </a-scene>
  </body>
 </html>

이런 오류가 나왔다.



그래서, http-server를 인스톨 해, 로컬 호스트에 액세스 하면, 에러는 나오지 않고, 360도 카메라의 화상이 표시되었다.
$ npm install -g http-server

$ http-server

서버가 일어나면
http://localhost:8080/
에 액세스합니다.

좋은 웹페이지 즐겨찾기