gpt4 book ai didi

php - Intex XDK 的 Ajax 连接失败

转载 作者:行者123 更新时间:2023-12-01 03:12:03 29 4
gpt4 key购买 nike

我在手机上使用 Ajax 连接到 php 页面时遇到问题。我已经尽可能简化了交易。服务器端代码为:

<?php
echo(json_encode('success'));
?>

客户端代码是:

$.ajax({
‘url’: "http://www.skynet.ie/~lobo/test.php",
‘success’: function(results){
alert(results);
},
‘error': function(XMLHttpRequest, textStatus, errorThrown) {
alert(JSON.stringify(XMLHttpRequest));
}
});

当从英特尔 XDK 模拟器进行测试时,我得到了成功的响应。当我从手机 (IOS) 启动应用程序时,我得到:

readyState: 0, responseText: ””, status: 0, statusText: ”error”

来自误差函数。我尝试过添加

header('content-type: application/json; charset=utf-8');
header("Access-Control-Allow-Origin: *");

到php页面无济于事。我设置了 $.support.cors = true;本地。我尝试过使用 $.getJSON 以及几乎所有我能找到的似乎相关的 ajax 选项。我收到连接到 http://time.jsontest.com 的成功响应通过电话,我可以从模拟器中我自己的网站获得响应。当我尝试从手机连接到服务器时,我真的不知道会出现什么问题。我想任何见解都将不胜感激。

斯蒂芬

最佳答案

您遇到了 CORS 问题。请尝试以下操作:

为了让您能够向 Intel XDK 中的国外网站或由 XDK 构建的应用程序发出 ajax 请求,我建议您在HEAD 元素。

例如,

<!DOCTYPE html><!--HTML5 doctype-->
<html>
<head>
<title>Your New Application</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0" />
<style type="text/css">
/* Prevent copy paste for all elements except text fields */
* { -webkit-user-select:none; -webkit-tap-highlight-color:rgba(255, 255, 255, 0); }
input, textarea { -webkit-user-select:text; }
body { background-color:white; color:black }
</style>
<script src='intelxdk.js'></script>
<script src='xhr.js'></script>
<script type="text/javascript">
/* Intel native bridge is available */
var onDeviceReady=function(){
//hide splash screen
intel.xdk.device.hideSplashScreen();
};
document.addEventListener("intel.xdk.device.ready",onDeviceReady,false);
</script>
</head>
<body>
<!-- content goes here-->
<h2>Hello World</h2>
</body>
</html>

有关在英特尔 XDK 中发出 ajax 请求的更多信息,请访问 https://software.intel.com/en-us/html5/articles/how-to-access-JSON-data-in-HTML5-apps

关于php - Intex XDK 的 Ajax 连接失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26262559/

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