4

我正在使用新的 FileReader API 在上传前预览图像。这是使用 DataURLs 完成的。但如果图像很大,DataURL 可能会很大。这对我来说尤其是一个问题,因为用户可能一次上传多张图片并且预览这些图片实际上大大降低了我的浏览器速度,并且实际上使 chrome 崩溃了几次。

在上传之前使用 DataURLs 在客户端上预览图像有什么替代方法吗?

4

1 回答 1

3

您还可以将数据存储在客户端的磁盘上(在另一个位置,以便您可以使用 JavaScript 访问该文件)。当涉及到这个主题时,这篇文章非常广泛:

http://www.html5rocks.com/en/tutorials/file/filesystem/

但并非所有浏览器都支持它。

您必须请求存储空间(文件系统),然后创建一个文件,向其中写入数据,最后获取 URL:

window.requestFileSystem(window.PERSISTENT, 5*1024*1024, function(fs) {
    fs.root.getFile(filename, {create: true}, function(fileEntry) {
        fileEntry.createWriter(function(fileWriter) {
            var arr = new Uint8Array(data.length);

            // fill arr with image byte data here

            var builder = new BlobBuilder();
            builder.append(arr.buffer);
            var blob = builder.getBlob();

            fileWriter.write(blob);

            location.href = fileEntry.toURL(); // navigate to file. The URL does not contain the data but only the path and filename.
        });
    });
}, function() {});
于 2011-07-17T13:05:57.433 回答