jquery函数调用WCF REST服务

时间:2012-08-17 17:52:09

标签: jquery jsonp

调用以下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');
 };

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分: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 */
    }
});