Androidでモバイルアプリケーションを作成しており、phonegap、モバイルjquery ajax codeigniter、およびmysqlを使用しています。ログインプロセスに問題があります。私の AJAX リクエストは常に失敗しました。私は自分の登録プロセスで同じことを使用していますが、うまくいきます。その奇妙な..これはphonegapのlogin.htmlの私のコードです:
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
<script type="text/javascript" charset="utf-8" src="cordova-2.0.0.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("input[type=text]").val('');
document.addEventListener("deviceready", init, false);
function init() {
$('a[id^="submitButton"]').on('click',function(){
$("#submitButton",this).attr("disabled","disabled");
//$("#loginForm").on("submit",function() {
u = $("#username").val();
p = $("#password").val();
if(u!='' && p!='') {
$.ajax({
url:'http://****.dyndns-home.com/health/index.php/health_login?username='+u+'&password='+p,
dataType:'json',
success:function(data, textStatus, jqXHR)
{
$.mobile.changePage("menu1.html");
if(data.status==1) {
localStorage.setItem("username", u);
localStorage.setItem("password", p);
$.mobile.changePage("menu1.html");
$("input[type=text]").val('');
}
if(data.status==0){
alert("Wrong username or password!");
$("input[type=text]").val('');
}
},
error: function(jqXHR, textStatus, errorThrown){
alert('AJAX request failed');
}
});
}
else{
alert("You must enter a username and password");
}
return false;
});
}
});
</script>
</head>
<body>
<div data-role="page">
<div data-role="header" >
<h2>Login</h2></div>
<div data-role="content">
<form id="loginForm">
Username: <input type="text" id="username" value="" name="username"/>
Password:<input type="text" id="password" value="" name="password"/>
<a href="forget.html" > Ξέχασες τον κωδικό ή το όνομα χρήστη;</a><br>
<a href="index.html" data-role="button" data-transition="turn" data-inline="true" data-icon="back" >Back</a>
<a href="" id="submitButton" name="submitButton" data-role="button" data-inline="true" data-theme="b" data-icon="forward">Είσοδος</a>
</form>
</div>
<div data-role="footer" data-position="fixed"><h2></h2></div>
</div>
</body>
</html>
また、login.html を chrome と mozzila で Web アプリケーションとして実行すると、問題はなく、ajax リクエストが成功しました。APIレベル15(Android 4.0.3)のEclipseでこのアプリケーションを実行します。
register.html コードが必要かどうか教えてください。
あなたはどう思いますか?この問題を2日間修正しようとしていますが、何もできません。
ありがとうございました!