错误/Web 控制台:未捕获错误:卸载处理程序花费太多时间
当我通过 WebView 加载 url 时,有时会收到大量如下消息:
10-19 19:18:38.056: ERROR/Web Console(6524):
Uncaught Error: Too much time spent in unload handler. at v8/DateExtension:1
此错误是什么意思?
When I load a url via WebView, I sometimes receive a flood of numerous messages like this:
10-19 19:18:38.056: ERROR/Web Console(6524):
Uncaught Error: Too much time spent in unload handler. at v8/DateExtension:1
What does this error mean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这似乎是在 webkit 中的 DateExtension.cpp 中定义的。这是一个 C++ 异常,如果调用 JS 钩子(如果设置了enableSleepDetection(true),则插入到 Date.getTime 中)超过 1000 次,则会引发该异常。
您可能需要获取 Android 源代码以进行更多研究。该文件没有任何文档。
This appears to be defined in DateExtension.cpp, in webkit. It's a C++ exception that is thrown if a JS hook (inserted into Date.getTime, if enableSleepDetection(true) is set) is called more than 1000 times.
You might want to fetch the Android source code to look into it more. There's no documentation on the file.
我遇到了同样的错误。经过一番调查后我解决了这个问题。
也许这段代码会对您有所帮助:
I got the same error. After some investigating I have solved this issue.
Maybe this code will help you: