为了账号安全,请及时绑定邮箱和手机立即绑定

如何从 Go HTTP Server 为 Angular 应用程序提供服务?

如何从 Go HTTP Server 为 Angular 应用程序提供服务?

Go
芜湖不芜 2023-08-14 14:52:28
我正在尝试从用 Go 编写的服务器提供 Angular 应用程序(Angular 8.2.14)。四处搜索后,我发现了以下片段,据说可以解决这个问题。func main() {    http.ListenAndServe(":4000", http.FileServer(http.Dir(folderDist)))}其中folderDist是我构建应用程序的目录。当我在示例中导航到 localhost:4000 时,我在浏览器上收到以下错误:runtime-es2015.js:1 Failed to load module script: The server responded with a non-JavaScript MIME type of "text/plain". Strict MIME type checking is enforced for module scripts per HTML spec.styles-es2015.js:1 Failed to load module script: The server responded with a non-JavaScript MIME type of "text/plain". Strict MIME type checking is enforced for module scripts per HTML spec.main-es2015.js:1 Failed to load module script: The server responded with a non-JavaScript MIME type of "text/plain". Strict MIME type checking is enforced for module scripts per HTML spec.polyfills-es2015.js:1 Failed to load module script: The server responded with a non-JavaScript MIME type of "text/plain". Strict MIME type checking is enforced for module scripts per HTML spec.vendor-es2015.js:1 Failed to load module script: The server responded with a non-JavaScript MIME type of "text/plain". Strict MIME type checking is enforced for module scripts per HTML spec.我缺少什么?我已经尝试过这里建议的解决方案,但错误仍然相同。
查看完整描述

1 回答

?
ABOUTYOU

TA贡献1812条经验 获得超5个赞

解决了。

显然 Angular 8 的某些版本存在错误......

编辑tsconfig.json文件并将“target”行更改为“es5”。

"target": "es5",

进行“构建”。

完毕!


查看完整回答
反对 回复 2023-08-14
  • 1 回答
  • 0 关注
  • 78 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信