gpt4 book ai didi

javascript - 由于 MIME 类型 (“text/html” ) 不匹配 (X-Content-Type-Options : > nosniff)),资源被阻止

转载 作者:行者123 更新时间:2023-12-05 04:58:22 32 4
gpt4 key购买 nike

文件结构

File structure

index.js:

app.set("view engine", "ejs");

app.use(express.static("public"));

app.use(
bodyParser.urlencoded({
extended: true,
})
);

聊天.ejs

<body>
<h1><%= (roomName) %></h1>

<div id="video-grid">

</div>


<script src="script.js"></script>
</body>

加载时,显示错误

"The resource from “http://localhost:5000/chat/Aishu%20study/Aneesa/script.js” was blocked due to MIME type (“text/html”) mismatch (X-Content-Type-Options: nosniff)."

如果我将所有内容都保存在同一个 html 文件中,它就可以工作。有人可以帮我弄这个吗?我不确定是什么问题

最佳答案

您应该像这样包含您的公共(public)路径:

app.use(express.static(__dirname+ '/public'));

然后像这样实现你的脚本和样式:

<script src="/script.js">

关于javascript - 由于 MIME 类型 (“text/html” ) 不匹配 (X-Content-Type-Options : > nosniff)),资源被阻止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64040993/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com