gpt4 book ai didi

ios - 使用 Phonegap 的 IOS 上的 Jquery ajax 请求 - Ajax 不工作

转载 作者:可可西里 更新时间:2023-11-01 06:23:43 24 4
gpt4 key购买 nike

我有一个简单的 html 登录表单,使用 phonegap 框架部署在 Xcode 上。

单击 submitLogin 按钮后,我使用 ajax 请求发送登录凭据以验证登录。这是我处理登录的 javascript 函数:

function submitLoginForm (login_id, login_pass){
//here we need to communicate with the php files in the server
console.log ("debug 1 ");
$.ajax({
type: "POST",
url: "http://192.168.1.9/serverapp/loginHandler.php",
data: "login_id=" + login_id + "&login_password=" + login_pass,
success: function(loginStatus){
navigator.notification.alert ("login request successfully sent");
console.log ("debug 2");
if (loginStatus == "success"){
console.log ("debug 3 ");
location.href = "main.html";
}
else{
console.log ("debug 4 ");
location.href="index.html?errcode=1";
}

}
});

console.log ("debug 5 ");
}

提交登录表单后,我可以看到控制台只打印了“debug 1”消息。在这种情况下可能出了什么问题?如果 ajax 请求失败,它仍然应该打印“调试 5”消息,但它没有打印任何内容,只是跳过整个内容,除了第一条调试消息。

我可以从我的浏览器访问 php url,所以我确信问题不在于 php 代码。我一直试图花几个小时没有结果。 Phonegap IOS 框架是否有类似的问题,您是如何解决的?

最佳答案

问题已解决。

我正在使用来自 http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js 的外部 jquery 文件

而且外部的 jquery url 似乎被 ios 模拟器阻止了,所以我必须将该 url 放入白名单中。

步骤:

  • 在您的 XCode phonegap 项目中,浏览到 Resources 文件夹。
  • 转到 Supporting Files 目录,并编辑 PhoneGap.plist 文件。
  • 在外部主机列表中,添加您想要的任何外部 URL访问(包括外部 jquery url,以及您将在您的 ajax 请求中使用)。

我希望这对遇到与我相同问题的其他开发者有用。

关于ios - 使用 Phonegap 的 IOS 上的 Jquery ajax 请求 - Ajax 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9643165/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com