I want to export form files in PC browser and mobile browser, and expect that they can be exported normally in different browsers.
However, Google, Apple, Oppen and Firefox can be exported normally at both ends. The mobile browsers such as Wechat, QQ, UC and 360 failed to export. bin suffix files, which could not be downloaded.
So,
1. Which browsers are compatible with webdatarocks?
2. If you want to support some Chinese browsers, such as Wechat Browser, QQ Browser (Mobile), 360 Browser (Mobile), UC Browser (Mobile), what do I need to do?
意思是国内这些手机浏览器导出会失败吗?
国内的浏览器,在 PC 端没有问题,但在移动端会出现问题。
这个框架的导出应该是基于如下原理:
function download(content, filename) {
letaEl = document.createElement(‘a’)
aEl.download = filename
aEl.style.display = ‘none’
letblob = newBlob([content])
aEl.href = URL.createObjectURL(blob)
console.log(aEl.href)
document.body.appendChild(aEl)
aEl.click()
}
Hello,
Thank you for the question.
1) As for the supported browsers, please find the official list below:
2) Currently, there are no plans to support mobile Chinese browsers, but we will add your request and to our backlog. As a workaround, you can try to modify the source of the FileSaver.js library that is bundled with webdatarocks.js
and used for saving files.
Hope it helps.
Regards,
WebDataRocks Team