关于phonegap的$ .ajax()

时间:2012-06-15 16:01:28

标签: android jquery cordova github

在Android的 github 中,有人知道带有$.ajax() phonegap 的示例吗?我读过JSONP或CORS,但我只是从Twitter请求数据。

我只需要获取我的数据服务器。

2 个答案:

答案 0 :(得分:4)

通过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) . ');';
?>

答案 1 :(得分:1)

检查URL。它将帮助您从数据服务器加载数据。