javascript - 尝试在 iOS Safari 8 中存储 blob 会抛出 DataCloneError

标签 javascript ios html safari indexeddb

当我尝试存储一个 blob(通过 XMLHttpRequest GET 请求检索时,iOS 8.4 上的 Safari 抛出错误:

DataCloneError: DOM IDBDatabase Exception 25: The data being stored could
not be cloned by the internal structured cloning algorithm

这发生在我的代码和这个例子中:http://robnyman.github.io/html5demos/indexeddb/

这是导致我的代码(和上面的示例)失败的行:

//This throws the error
var put = transaction.objectStore("elephants").put(blob, "image");

有解决办法吗? blob 是否需要首先进行 base64 编码(就像您必须使用 WebSQL 一样)?

我的代码 (适用于桌面 Chrome/Firefox 和 Android 上的 Chrome/Firefox):

var xhr = new XMLHttpRequest();
var blob;

//Get the Video
xhr.open( "GET", "test.mp4", true );

//Set as blob
xhr.responseType = "blob";

//Listen for blob
xhr.addEventListener("load", function () {
        if (xhr.status === 200) {
            blob = xhr.response;

            //Start transaction
            var transaction = db.transaction(["Videos"], "readwrite");

            //IT FAILS HERE
            var put = transaction.objectStore("Videos").put(blob, "savedvideo");

        }
        else {
            console.log("ERROR: Unable to download video." );
        }
}, false);

xhr.send();

最佳答案

出于某些奇怪的原因(这是一个错误),就像 iOS Safari 7 的 WebSQL 一样,您不能在 iOS Safari 8 上的 IndexedDB 中存储 BLOB。您必须转换它转换为 base64,然后它将正确存储。 (我再说一遍,这是一个错误)

因此,将代码更改为:

更改响应类型

xhr.responseType = "arraybuffer";

从 XMLHttpRequest 中检索后存储在数据库中

//We'll make an array of unsigned ints to convert
var uInt8Array = new Uint8Array(xhr.response);
var i = uInt8Array.length;
var binaryString = new Array(i);
while (i--)
{
    //Convert each to character
    binaryString[i] = String.fromCharCode(uInt8Array[i]);
}

//Make into a string
var data = binaryString.join('');

//Use built in btoa to make it a base64 encoded string
var base64 = window.btoa(data);

//Now we can save it
var transaction = db.transaction(["Videos"], "readwrite");
var put = transaction.objectStore("Videos").put(base64, "savedvideo");

从 IndexedDB 中检索后,将其转换回来:

//Convert back to bytes
var data = atob( event.target.result );

//Make back into unsigned array
var asArray = new Uint8Array(data.length);

for( var i = 0, len = data.length; i < len; ++i ) 
{
    //Get back as int
    asArray[i] = data.charCodeAt(i);    
}

//Make into a blob of proper type
var blob = new Blob( [ asArray.buffer ], {type: "video/mp4"} );

//Make into object url for video source
var videoURL = URL.createObjectURL(blob);

关于javascript - 尝试在 iOS Safari 8 中存储 blob 会抛出 DataCloneError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32901733/

相关文章:

javascript - 防止在 TinyMCE 中输入默认键盘事件

javascript - Aurelia 中的 Typescript 自动注入(inject)

ios - 无法在 UINavigationController 上设置后退按钮

javascript - 从导航后面滑出文本

html - 超链接消失

javascript - 使用 HTML 或 JavaScript 制作当前网站的 "screenshot"?

javascript - 单击 anchor 标记时获取当前行值

php - 用于智能电视应用程序的 HTML5 与 Ajax-CE

ios - 多种异步方法,一个完成处理程序

ios - 具有不同 uv 坐标的 OpenGL ES 1 多纹理