phoneGap从url获取JSON数据并将数据存储在SQLite数据库(PhoneGap)中

时间:2014-02-07 08:01:22

标签: android cordova

我是phoneGap的新手。我想简单的两页应用程序。在第一个应用程序中,我们将获取JSON数据,然后将其存储在phoneGap数据库(SQLite)中。然后重定向到第二页,我们可以使用来自phoneGap数据库的数据。 我已经搜索了很多,但没有得到任何解决方案。

1 个答案:

答案 0 :(得分:1)

使用jquery Ajax从服务器

中检索Json
 $.ajax({
            url: 'yoururl',
            type: 'GET',
            contentType: "application/json;charset=utf-8",
            success: function (data) {
                // iterate over data and save it to DB
            },
            error: function (x, y, z) {
                alert(x.responseText);
            }
        });

对于数据库部分,您可以查看此link,其中说明了如何从数据库存储和检索