我使用以下代码为blob创建URL:
var URL = window.URL || window.webkitURL;
URL.createObjectURL(storedBlob);
我确保存在URL方法,以及调试器中看起来像这样的blob:
代码在Firefox,Chrome和IE上运行良好,但在Safrari上createObjectURL
始终返回null
。
编辑:
为Chris Benselers fiddle中的新构造的Blob创建对象URL工作正常。
我从WEBSQL数据库恢复blob(我用它IndexedDBShim)
有什么问题以及如何解决?