1

我尝试使用 phonegap 和 android 使用服务。

我使用 localhost 的服务返回带有 chrome 的 json:

{
    "GetListaMunicipiosResult": [{
        "MunicipioID": "1",
        "MunicipioNome": "Florianópolis",
        "MunicipioUf":"SC"
    }, {
        "MunicipioID": "2",
        "MunicipioNome": "Jaraguá do Sul",
        "MunicipioUf": "SC"
    }]
}

在我的.js文件中,我使用以下代码调用 GET json:

$('#cidades_page').live('pageshow',function(event){
    $.ajax("http://10.0.2.2:56976/MunicipiosService.svc/ListaMunicipios",{
        beforeSend: function (xhr) {
        $.mobile.showPageLoadingMsg();
        alert("beforeSend");
        },

        complete: function () {
            // $.mobile.hidePageLoadingMsg();
            alert("complete");
        },
        contentType: "application/json",
        dataType: "jsonp",
        jsonp: "callback",
        type: "GET",
        error: function (xhr, ajaxOptions, thrownError) {
            alert(xhr.status);
            alert(xhr.responseText);
            //alert(thrownError);
        },
        success: function (data) {
            alert(JSON.stringify(data));

        }
    });
});

但是当页面显示时,只有 alert alert("beforeSend") 触发,并且什么也没发生。

我使用 $.ajax(.... 在 html 中插入 json 调用并使用 chrome 及其工作打开。我不知道还能做什么。

感谢帮助

编辑我在 windows phone 中测试,现在我可以得到错误 Error:GetListaMunicipios 没有被调用。

我的.js:

$.ajax("http://localhost:56976/MunicipiosService.svc/ListaMunicipios?callback=?",{
        beforeSend: function (xhr) {
            // $.mobile.showPageLoadingMsg();
        alert('beforeSend');
        },

        complete: function () {
            // $.mobile.hidePageLoadingMsg();
            alert('complete');
        },
        contentType: 'application/json; charset=utf-8',
        dataType: 'jsonp',
        crossDomain: true,
        jsonp: 'callback',
        jsonpCallback:'GetListaMunicipios',
        type: 'GET',
        error: function (xhr, ajaxOptions, thrownError) {
            alert(xhr.status);
            alert(xhr.responseText);
            alert(thrownError);
        },
        success: function (data) {
            alert('success');

        }
    });

我的 WCF 服务

命名空间 GuiaService {

[ServiceContract]

public interface IMunicipiosService
{
    [OperationContract]
    [WebInvoke(Method = "GET",
        ResponseFormat = WebMessageFormat.Json,
        BodyStyle = WebMessageBodyStyle.Wrapped,
        UriTemplate = "ListaMunicipios")]

    List<ClsListaMunicipios> GetListaMunicipios();
}

}

感谢帮助。

4

1 回答 1

1

您应该使用done,failalways

success,error并且complete已被弃用。

更新:如评论中所述,这不适用于您使用它的方式。我现在认为问题是因为您使用jsonp的是 as 类型而不是json.

jsonp设计为在加载时自动调用函数,因此您的服务器应该向生成的代码添加函数调用。jQuery 可能期望这种行为并禁用它自己的回调,或者使用该jsonp机制来触发它自己的回调,但是由于您的服务器实际上并没有添加函数调用,所以什么也没有发生。

于 2013-03-21T21:58:19.823 回答