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"