在phonegap中连接数据库

时间:2014-04-01 13:56:18

标签: android database cordova

我在android的phonegap中创建了用户界面。现在我想在我的基于Web的应用程序中插入数据,这是使用php和mysql制作的。所以每当我点击提交按钮,信息就应该存储在我的网络应用程序的网络数据库中。 我怎样才能做到这一点......?

1 个答案:

答案 0 :(得分:0)

您还可以使用会话存储和ajax存储您的信息。

formData = {
    username: $("#username").val(),
    password: $("#password").val()
}
$.ajax({
    url: "https://example.com/login.php",
    type: "GET",
    crossDomain: true,
    contentType: 'application/json',
    data: formData,
    dataType: "json",
    success: function(data) {
        sessionStorage.setItem("userId", data.user[0].userId);
    },
    error: function() {
        alert("error");
    }
});