1

调用以下 WCF REST 服务的正确函数是什么

http://xx.x.x.xxx/GAdmin/WGService/Service1.svc/RetrieveData?term=apple

添加了以下参数

term=apple
username:joe password:pote

并且是 json 它应该具有 jsonp 的回调函数

  $.getJSON('http://xx.x.x.xxx/GAdmin/WGService/Service1.svc/RetrieveData?term=apple
  callback=?'{
 content: { username: "joe", password: "pote" },
 function (data)
 {
    alert('Received ' + data + ' results');
 };
4

2 回答 2

1

无法找出问题,但如果可能,请通过这篇文章

使用 jQuery 调用 WCF 服务的步骤

使用 WCF 创建 REST 服务并使用 jQuery 使用

使用 Jquery/Javascript 调用跨域 WCF 服务

于 2012-08-17T17:58:29.923 回答
0

我不确切知道您当前是如何配置 WCF 服务的,但是以下代码块将调用该服务并将结果传递给回调。

$.ajax({
    cache: false,
    type: "GET",
    async: false,
    url: "http://xx.x.x.xxx/GAdmin/WGService/Service1.svc/RetrieveData?term=apple",
    contentType: "application/json",
    success: function (response) {
        /* SUCCESS FUNCTION */
    },
    error: function (error) {
        /* ERROR FUNCTION */
    }
});
于 2012-08-17T18:12:11.393 回答