A-FrameでCORSエラーが出た
ローカルで、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/
にアクセスする。
Author And Source
この問題について(A-FrameでCORSエラーが出た), 我々は、より多くの情報をここで見つけました https://qiita.com/tatsuya1970/items/8503091a7f281ec19fea著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .