On Sat, Dec 19, 2015, at 05:04 PM, [email protected] wrote: > I found a Angular-IndexedDB library > (https://github.com/FlussoBV/NgDexie/wiki/QuickStart) and tried to use > it. But I was not able to see the data being added to the storage.
IndexedDB definitely works on Firefox OS. What you might be running into is that the version of Firefox OS you are using is too old to speak the IndexedDB inspector protocol. What version of Firefox OS are you using? (It's probably also worth noting that even on nightly trunk builds of Firefox and Firefox OS, the IndexedDB inspector is somewhat limited in its capabilities. For example, although our IndexedDB implementation supports storing Map instances, the inspector exposes them as empty objects the last time I checked.) Another possibility is that you are running into quota problems. Installed Firefox OS apps are treated differently than websites on Firefox OS for IndexedDB quota purposes. See https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API/Browser_storage_limits_and_eviction_criteria for more information and a means of requesting "persistent" storage rights for your app/site. Andrew _______________________________________________ dev-fxos mailing list [email protected] https://lists.mozilla.org/listinfo/dev-fxos

