gpt4 book ai didi

google-chrome - Chrome : ERR_BLOCKED_BY_XSS_AUDITOR details

转载 作者:行者123 更新时间:2023-12-03 06:12:21 25 4
gpt4 key购买 nike

我在尝试发帖时收到此 chrome 标志,然后获取一个简单的表单。

问题是开发者控制台没有显示任何相关内容,我自己无法找到问题的根源。

是否有任何选项可以更详细地查看此内容?查看触发错误的代码片段以修复它...

最佳答案

开发中绕过此错误的简单方法是将 header 发送到浏览器

Put the header before send data to browser.

php 中,您可以发送此 header 以绕过此错误,send header reference :

header('X-XSS-Protection:0');

ASP.net 中,您可以发送此 header 和 send header reference :

HttpContext.Response.AddHeader("X-XSS-Protection","0");
or
HttpContext.Current.Response.AddHeader("X-XSS-Protection","0");

nodejs 发送 header 中,send header reference :

res.writeHead(200, {'X-XSS-Protection':0 });
// or express js
res.set('X-XSS-Protection', 0);

关于google-chrome - Chrome : ERR_BLOCKED_BY_XSS_AUDITOR details,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43249998/

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