该程序必须由 http 服务器托管。
使用 Node http-server 包:
在程序目录中,运行命令: > 如果已经满足要求,请先跳过。 npm install http-server npm run start
使用 Python http-server 模块:
在程序目录中,运行命令: python3 -m http.server --bind localhost --directory ./ 8000
打开浏览器并访问localhost:8000
笔记:
http 服务器可以将文件作为纯文本提供,在这种情况下尝试使用其他 http 服务器。