phonegap - sqlite or Indexed DB?

前端 未结 5 512
梦谈多话
梦谈多话 2020-12-28 18:04

I am web developer starting with phonegap. I need to create one app for iPhone, android and Windows Phone 8.
I need to store some data (too big for localStorage) local

5条回答
  •  自闭症患者
    2020-12-28 18:51

    Cordova WP8 supports IndexedDB only. iOS and Android WebSql only. Since WebSql is deprecated (I know how many people love/use it and agree that in many situations WebSql is very cool) I would recommend to proceed with IndexedDb and use the following polyfill for Android/iOS.

    PhoneGap polyfill for IndexedDB that makes the IndexedDB API to work with WebSQL

    Example

提交回复
热议问题