gpt4 book ai didi

javascript - X-Content-Type-Options = nosniff 解决方法

转载 作者:行者123 更新时间:2023-11-28 06:04:34 30 4
gpt4 key购买 nike

我在 web.config 中添加了 X-Content-Type-Options header ,该 header 本质上并没有加载脚本,因为 response.contentType 是“text”/html”。

现在,我将响应明确修改为:

Response.Clear();
Response.ContentType = "text/javascript";

调试器甚至会命中这些代码行,但最终 ContentType 是“text/html”。

如何修改ContentType

附注我在 IIS 6 上托管此网站。

最佳答案

您可能需要添加Response.Flush():

Response.Clear();
Response.ContentType = "text/javascript";
Response.Flush();

编辑:当您使用 MVC 时,您应该在 View 中设置内容类型,而不是 Controller ,如下所示:

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" ContentType="text/javascript" %>

或者 Razor :

@{ Response.ContentType = "text/javascript"; }

关于javascript - X-Content-Type-Options = nosniff 解决方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37003298/

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