A-Frame에서 CORS 오류가 발생했습니다.
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/
에 액세스합니다.
Reference
이 문제에 관하여(A-Frame에서 CORS 오류가 발생했습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tatsuya1970/items/8503091a7f281ec19fea텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)