我刚刚开始学习electronicjs(https://electronjs.org/)和无框VR 3D(https://aframe.io/)。但是我不确定框架是否可以在电子内部工作?我在Google搜索中找不到任何内容。我在控制台中收到跨域策略错误,然后出现多个Three.js错误和a-scene.js错误。我已经在html页面中添加了js文件:
<head>
<script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script
</head>
在正确方向上的任何帮助将不胜感激。
谢谢。
---更多信息
im使用https://github.com/electron/electron-quick-start,然后main.js由mainWindow.loadFile('index.html')
组成<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<script src="aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-box position="-1 0.5 -3" rotation="0 45 0" color="#4CC3D9"></a-box>
<a-sphere position="0 1.25 -5" radius="1.25" color="#EF2D5E"></a-sphere>
<a-cylinder position="1 0.75 -3" radius="0.5" height="1.5" color="#FFC65D"></a-cylinder>
<a-plane position="0 0 -4" rotation="-90 0 0" width="4" height="4" color="#7BC8A4"></a-plane>
<a-sky color="#ECECEC"></a-sky>
</a-scene>
</body>
</html>
aframe.min.js现在是本地的,但我仍然遇到相同的错误