javascript常见错误及处理方法
这篇文章主要是记录在调试浏览器的时候,遇到的各种常见和不常见的错误。
1.Net::ERR_INCOMPLETE_CHUNKED_ENCODING
这个问题也是很奇葩的,在其他人的电脑上都没有,就是在老板的电脑上有问题,你知道我当时有多绝望吗?
最后,检查,真的是服务器磁盘空间不足引起的。
1.Net::ERR_INCOMPLETE_CHUNKED_ENCODING问题跟踪,顺藤摸找出解决方法 (这篇文章给了我思路,会不会是磁盘空间不足了呢?)
2.响应已被截断
浏览器显示,响应已被截断。
【解决方法】
1.浏览器输入:about:config
2.输入框中搜索:devtools.netmonitor.responseBodyLimit
3.将值 1048576 改为 0
1.火狐浏览器提示响应已被截断 火狐浏览器 92.0b4请求在遇见返回报文超过1MB时提示 响应已被截断, 如图, 请看附件.提示 响应已被截断 后,接口返回的报文无法在页面上正常显示
3.the request client is not a secure context and the resource is in more-private address space private
1.Chrome CORS error on request to localhost dev server from remote site
2.解决谷歌浏览器最新chrome94版本CORS跨域问题
4.Failed to read the ‘sessionStorage’ property from ‘Window’: Access is denied for this document
这个问题发生在我使用了iframe中嵌入了一个网页,在网页中,我写了如下的代码,结果在部分浏览器中就会出现报错的情况。
1 | if(!token){ |
【解决】
主要就是打开Chrome的浏览器设置,在隐私与安全这歌设置项里面,将允许第三方的 Cookie 打开就可以了。
1.[javascript] 报错SecurityError: Failed to read the ‘localStorage’ property from ‘Window’: Access is de 这个提供了思路
2.js报错 Access is denied for this document.这是为什么呢,有解决的办法吗?
3.Iframe in Chrome error: Uncaught SecurityError: Failed to read the ‘sessionStorage’ property from ‘Window’ 这里也差不多的解决方法
3.iframe,我们来谈一谈 这里谈到了很多关于iframe的知识点:iframe基本内涵、获取iframe里的内容、在iframe中获取父级内容、iframe的轮询、自适应iframe之蜜汁广告、防嵌套网页、X-Frame-Options、CSP之页面防护、sandbox、resolve iframe跨域、H5的CDM跨域与iframe
5.关于ios下输入框无法输入的问题
今天在项目中遇到在苹果手机中无法输入的问题,苹果手机的输入框获取焦点是需要允许用户选择的,如果禁止就会无法获取input框焦点,出现无法输入的问题。
1 | /** 错误 */ |
1.关于ios下输入框无法输入的问题
6.The reguest client is not a secure context and themesounce is in morenprivate address space “private
【问题原因】
公网资源(访问者) 访问 私网资源(被访问者)
1.[hrome 报错解决 The request client is not a secure context and the resource is in more-private address space `privat](https://www.cnblogs.com/whm-blog/p/16418314.html)