vastsa/FileCodeBox

日志正常但页面空白

Closed this issue · 7 comments

作者你好,我在Windows下安装python直接运行main.py,页面加载未报错,但是页面是空白。
python版本为3.9.13,已安装requirements.txt里的模块,运行log正常。
image
image
是我遗漏了什么步骤吗,还是说必须使用docker运行。

image python -m uvicorn main:app --reload --port 12345 --host 0.0.0.0 我这边启动没有问题,试试loclahost

我发现了一个异常:Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/plain". Strict MIME type checking is enforced for module scripts per HTML spec.
image

我之前在Linux下运行正常,这次是在Windows下运行发现页面空白,是否是js兼容性问题。

应该不至于,和系统应该没关系

我按照下面网站的方法修改了注册表,解决了此问题
https://caddy.community/t/failed-to-load-module-script/17408
我的默认.js为text/plain,修改为了text/javascript
image

我按照下面网站的方法修改了注册表,解决了此问题 https://caddy.community/t/failed-to-load-module-script/17408 我的默认.js为text/plain,修改为了text/javascript image

👌