Skip to content Skip to sidebar Skip to footer

Error "The Object Store Currently Does Not Support Blob Values" When Trying To Store File In IndexedDB

I'm trying to make a storage in javascript using IndexedDB to store blobs. Here is my code var Storage = (function () { function Storage(callback) { var indexedDB = win

Solution 1:

I did find the answer to my question. Well, I did find somthing to resolve the problem : "how to store files permanently in Firefox ?"

I found a FileSystem fallback : https://github.com/ebidel/idb.filesystem.js

It works well.


Post a Comment for "Error "The Object Store Currently Does Not Support Blob Values" When Trying To Store File In IndexedDB"