我有一个非常基本的 jqm/phonegap 应用程序
这是我的html
<html>
<head>
<title>jQuery Mobile Web App</title>
<link href="jquery-mobile/jquery.mobile-1.0.min.css" rel="stylesheet" type="text/css"/>
<link href="style.css" rel="stylesheet" type="text/css">
<script src="jquery-mobile/jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="jquery-mobile/jquery.mobile-1.0.min.js" type="text/javascript"></script>
</head>
<body >
<div data-role="page" id="home" >
<div data-role="header">
<h1>p</h1>
</div>
<div data-role="content" style="text-align:right" id="c1">
</div>
</div>
</div>
</div>
这是我的 js 代码,它位于 html 代码的主体中
<script>
function get_news_list(id , link_ , refresh_ ){
jQuery.support.cors = true;
$.ajax({
url : link_ ,
success:function(data){
$('#c1').html(data);
} ,
error : function(data) {
alert(data.toSource);
}
});
}
get_news_list('latest' , 'http://pnup.ir/?feed=json' , refresh_);
</script>
当我将它作为网页运行时,我得到
如果 Firefox 出现此警报
function toSource() {
[native code]
}
镀铬
undefined
我认为没问题,因为它是一个跨域 ajax 请求,它在网络浏览器中失败(尽管在 firebug 中它的状态是好的 200 它只是没有返回任何响应)但是当我在我的 android 设备上测试它时我得到了一样undefined
。我认为跨域 ajax 请求一旦我在 android 设备中运行它作为应用程序就没有问题?
我错过了什么吗?我应该使用 jsonp 吗?它是一个 wordpress 网站和 json 提要插件,它的提要以 json 格式提供,但获取 jsonp 提要将是一场噩梦……至少我不知道怎么做!