0

我正在使用 JQM + PhoneGap 开发 Hybrid Android App 我正在使用 AJAX 执行 JSONP 请求

它适用于所有 Chrome PC 浏览器,在连接 WiFi 时也适用于我的 android 应用程序,但是当将网络连接更改为 3G 时,AJAX 请求没有响应。

我发现@BruceHill 相关的帖子写了以下内容:“移动运营商在将内容发送到手机之前进行内容修改,此修改破坏了 jQuery” Jquery 移动页面无法在荷兰 3G 连接上正确加载

虽然我不住在荷兰,但我尝试按照他的建议通过在远程服务器上定位所有 JS 文件并通过 CDN 调用它,但不幸的是它没有帮助。

我很乐意在这方面得到一些帮助......

这是我的 AJAX 请求:

$.mobile.allowCrossDomainPages = true;

$('#expertsListPage').live('pageshow', function (event) {
   $.mobile.showPageLoadingMsg(); 
    getExpertsList();
});


var catId;
var catName
function getExpertsList() {


    $('#expertsList li').remove();
    catId = getUrlVars()["id"];
    catName = getUrlVars()["cat"]  ;

    $('h1').text( unescape(catName) );

    var url = 'http://apis.mydomain.com/mydata.svc/jsonp' 


    $.ajax({
         cache: true,
         type: 'GET',
         url: url,
         dataType: 'jsonp' ,
         jsonp: 'callback',
         success:api_do
    });


}

var expertss;
function api_do(obj) {

    $('#expertsList li').remove();

    expertss = obj.experts;

    $.each(expertss, function (index, expert) {

        $('#expertsList').append('<li><a  href="ExpertDetails.html?id=' + expert.id + '&catid=' + catId +'&catName=' + catName + '">' +
                    '<img style="width:160px;height:160px;" src="' + expert.thumbnail + '"/>' +
                    '<h4>' + expert.name + '</h4>' +
                    '<p>' + expert.description + '</p>' +
                    '</a></li>');

    });

    $('#expertsList').listview('refresh');

    $.mobile.hidePageLoadingMsg();
}


function getUrlVars() {
    var varsExperts = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
    for (var i = 0; i < hashes.length; i++) {
        hash = hashes[i].split('=');
        varsExperts.push(hash[0]);
        varsExperts[hash[0]] = hash[1];
    }
    return varsExperts;
}
4

1 回答 1

0

尝试将此代码添加到您的 javascript 中,可能会有所帮助。

$( document ).on( "mobileinit", function() {
                 // Make your jQuery Mobile framework configuration changes here!
    $.support.cors = true;
    $.mobile.allowCrossDomainPages = true;
});
于 2013-02-09T05:29:56.767 回答