1

我有一个 WCF 服务:

[ServiceContract]

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

    List<ClsListaMunicipios> GetListaMunicipios();
}

它在 chrome 中返回 json(它是 JSON 还是 JSONP?):

{"GetListaMunicipiosResult":[{"MunicipioID":"1","MunicipioNome":"Florianopolis","MunicipioUf":"SC"},{"MunicipioID":"2","MunicipioNome":"Joinville","MunicipioUf":"SC"}]}

我的 JS:

$.ajax("http://localhost:56976/MunicipiosService.svc/ListaMunicipios", {

    beforeSend: function (xhr) {
        // $.mobile.showPageLoadingMsg();
        alert('beforeSend');
    },

    complete: function () {
        // $.mobile.hidePageLoadingMsg();
        alert('complete');
    },
    contentType: 'application/json; charset=utf-8',
    dataType: 'jsonp',
    type: 'GET',
    data: {},

    error: function (xhr, ajaxOptions, thrownError) {
        alert('not ok 1 ' + xhr.status);
        alert('not ok 2 ' + xhr.responseText);
        alert('not ok 3 ' + thrownError);
    },
    success: function (data) {
        alert('success');

    }
});

但我得到错误:

不好 1 200

不好 2 未定义

不行 3 错误 jQueryXXXXXXXXX 没有被调用

4

1 回答 1

1

由于您能够通过 Chrome 发出的 GET 请求获得 JSON 响应,因此我假设您已正确设置 WCF 服务。

您唯一的问题是您的成功回调没有触发。如果您正在执行跨域请求但只是从 WCF 方法返回 JSON,则会发生这种情况。您需要一些东西来构造和流回响应。

考虑在您的服务方法中执行此操作,而不是简单地返回List<ClsListaMunicipios>

    HttpContext.Current.Response.ClearContent();

    HttpContext.Current.Response.ContentType = "application/json";
    string callback = HttpContext.Current.Request.QueryString["callback"];

    HttpContext.Current.Response.Write(callback + "( " + new JavaScriptSerializer().Serialize(YourListObjectGoesHere)  + " )");
    HttpContext.Current.Response.Flush();
    HttpContext.Current.Response.End();

我使用了您的 AJAX 调用,随后触发了成功回调。

于 2013-03-24T13:23:55.020 回答