JSONP 404错误角度

时间:2014-07-27 18:30:36

标签: angularjs web-services jsonp

我写了一个网络服务 -

[WebGet(UriTemplate = "/", BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Json)]
        [OperationContract]
        String GetShift();

我也用javascript写了一个网络应用程序 -

var response = $http.jsonp("http://localhost:53035/JuleSService.svc/");
            response.success(function (data) {
                alert("success");
            });

            response.error(function (data, status) {
                alert(data+"\r\n"+status);
            });

但它始终与404代码

错误

0 个答案:

没有答案