2

我有以下工作示例,我正在尝试通过 jquery 请求获取http://detectlanguage.com 。因为这将是一个跨域请求,所以我使用的是 jsonp。

这是MSDN中的一个链接,其中包含类似的请求,据推测这jsonp是要走的路。

一切都很好,除了页面抛出错误Error: myCallback was not called,我从服务器得到的响应如下:

{"data":
  {"detections":[
    {"language":"ca",
     "isReliable":false,
     "confidence":0.14992503748125938
    },
    {"language":"en",
     "isReliable":false,
     "confidence":0.00 8103727714748784
    }]
   }
}

我整天都在 stackoverflow 中搜索有关 jsonp 的答案,但还没有让它工作。

很感谢任何形式的帮助

更新

包括 AJAX 调用

$.ajax({
    url: 'http://ws.detectlanguage.com/0.2/detect',
    data: {
        q: $('#hi').val(),
        key:'demo'
    },
    jsonpCallback: 'myCallback',
    dataType: "jsonp",
    success: myCallback,
    error: function(e,i,j){
         $('#results').html(j)
    }
});

我还有一个名为的javascript函数myCallback

function myCallback(response){
    alert(response.data)
}
4

2 回答 2

4

响应似乎不是 jsonp,jsonp 响应应该是javascript。下面是对我有用的代码。

阿贾克斯请求:

 $.ajax({
            crossDomain: true,
            type:"GET",
            contentType: "application/json; charset=utf-8",
            async:false,
            url: "http://<your service url here>/HelloWorld?callback=?",
            data: {projectID:1},
            dataType: "jsonp",                
            jsonpCallback: 'fnsuccesscallback'
        });

返回 jsonp (c#) 的服务器端代码:

 public void HelloWorld(int projectID,string callback)
    {

        String s = "Hello World !!";
        StringBuilder sb = new StringBuilder();
        JavaScriptSerializer js = new JavaScriptSerializer();
        sb.Append(callback + "(");
        sb.Append(js.Serialize(s));
        sb.Append(");");
        Context.Response.Clear();
        Context.Response.ContentType = "application/json";
        Context.Response.Write(sb.ToString());
        Context.Response.End();
    }
于 2013-10-17T10:01:12.010 回答
0

我也花了很长时间四处寻找答案。我的解决方案与服务有关,而不是 ajax 调用或 jQuery。具体来说,需要在 web.config 中使用此设置将服务设置为允许跨域访问:

<system.serviceModel>
<bindings>
  <webHttpBinding>
    <binding name="webHttpBindingWithJsonP" crossDomainScriptAccessEnabled="true" />
  </webHttpBinding>
</bindings>  

...

  <endpoint address="../YourService.svc"
  binding="webHttpBinding"
  bindingConfiguration="webHttpBindingWithJsonP"
  contract="YourServices.IYourService"
  behaviorConfiguration="webBehavior" />
于 2014-03-24T11:32:11.253 回答