我的WebView
应用包含锚标记中的download
属性的文件下载链接
<a href="path/to/the/file" download>
我在socket.io
中使用WebView
。在Android 4.4.2中,我可以在没有任何socket.io
中断的情况下下载该文件,但在Android 4.2 webview中,我有以下错误
错误:
E/Web Console﹕ WebSocket is closed before the connection is established.:0
答案 0 :(得分:0)
无意中我更改了var ranges = Array.from(document.querySelector('.ranges').children);
var total = ranges.reduce(function(acc, curr) {
return acc + Number(curr.value)
}, 0)
// Now you can check total
版本。恢复到旧版本后,它开始工作。