任何人都知道Android的github中的phonegap示例吗?我读过 JSONP 或 CORS,但我只从 Twitter 请求数据。$.ajax()
我只需要获取我的数据服务器。
通过jquery mobile非常容易。您可以使用普通的 Ajax 和一点点 JSON 来完成您的工作。我完成了 php 服务器。这里的示例代码,
通过 jquery 向服务器发送请求。
$.ajax({
url: <your Server URL>,
dataType: 'jsonp',
jsonp: 'jsoncallback',
timeout: 5000,
success: function(data, status){
/*Process your response here*/
}
});
在 php 服务器文件中,
<?php
$data="I am sending response to you";
/*you have to mention this callback compulsory*/
echo $_GET['jsoncallback'] . '(' . json_encode($data) . ');';
?>
检查此网址。它将帮助您从数据服务器加载数据。