从servlet加载数据到android phonegap中的listview时获取空白页

时间:2013-10-09 12:13:03

标签: android listview cordova

我想在android phonegap的listview中显示来自servlet的json数据。但它在android模拟器中显示空白页面。它也不是在调用servlet。这是我的代码,请帮助我。

<!DOCTYPE HTML>
  <html>

 <head>
<meta name="viewport" content="width=320; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Auth Demo</title>
<link rel="stylesheet" href="jquery.mobile-1.3.2.css" type="text/css" charset="utf-8" />
<script type="text/javascript" src="jquery.mobile-1.3.2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
 <script src="jquery-1.9.1.js"></script>
<script src="jquery.mobile-1.3.2.js"></script>

<script>
$.ajax({
url: 'http://10.0.2.2:7080/example/CaseList',
dataType: 'jsonp',
jsonp: 'jsoncallback',
timeout: 5000,
success: function(data, status){
   $.each(data, function(i, item) {
          $('ul').append('<li><a href="">' + item.case + '</a></li>');
          });

   $('#output').listview("refresh");
 },
error: function(){
   output.text('There was an error loading the data.');
}
  });
</script>
</head>

<body> 
<div data-role="page">
<div data-role="content">    
    <ul data-role="listview" data-filter="false" id="output" data-theme="d">
    </ul>
</div>
</div>
</body>
 </html>

1 个答案:

答案 0 :(得分:0)

我对ajax调用并不是百分之百,但我很确定你需要在定义之后实际调用该函数并且它看起来不像你。

尝试在您的代码中添加onload调用,然后将ajax包装在函数中。

身体标签:

<body onload="getData()">

功能:

function getData(){
    //place your ajax call in here
}