跨域ajax除了android之外都适用

时间:2013-01-14 13:47:38

标签: android ajax cordova cross-domain jsonp

在过去的两天半里,我在这个问题上花了很多头发......

使用phonegap为iPhone和Android构建应用。跨域ajax可以在我的浏览器和iPhone上运行。它不适用于Android。

我一直没有使用jQueryMobile,只是jQuery,直到我读到某个地方,我应该使用移动版本来让跨域工作在android上。所以我改变了项目以适应jMobile。我是否真的需要使用JqueryMobile来获得跨域ajax工作?如果可能的话,我宁愿不使用它。

尝试更改$ .mobile.allowCrossDomainPages = true; $ .support.cors = true;无济于事。我不知所措。请帮帮我

继承我的ajax代码

$.ajax({
    url: 'URL',
    type: 'GET',
    contentType: "application/json",
    dataType: 'jsonp',
    jsonp: 'jsoncallback',
    success: function(response){
        console.log("inside ajax");
        $.each(response, function(i,item){
            var category = "<div class='icon-text'><a class='ajaxify' href='pages/onlineRecipe.html' onclick='$(setOnlineID("+item.id+"))' >"
                +"<p><img alt='Image-alt' width='64' class='wrap-around' id='img"+item.id+"' />"
                +"<strong>"+item.title+"</strong>"
                +"<br/>"+item.desc+"</p></a></div>";

            $('#categories').append(category);
            var img = "#img" + item.id;
            $(img).attr('src', "data:image/png;base64,"+item.image);
            //other bindings
            App.ajaxLinkify($("a.ajaxify"));
            App.addTouchEvents($(".page"));
        });
    },
    error: function(xhs, status, error){
        //output.text('Ha producido un error cargando el dato. Por favor, intèntalo de nuevo.');
        console.log("Ajax not working");
    }
});

3 个答案:

答案 0 :(得分:0)

我的建议是检查 res / xml / config.xml 中的<access origin="http://www.example.com" />(cordova 2.3)

答案 1 :(得分:0)

尝试添加此jQuery.support.cors = true;

哦,还有另外一个提示,只是因为它缓存了以前的错误调用,将此添加到你的ajax

cache: false,

答案 2 :(得分:0)

需要将其添加到相应的php文件:header(&#34; Access-Control-Allow-Origin:*&#34;);