调用以下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');
};
答案 0 :(得分:1)
无法找出问题,但如果可能,请通过这篇文章
Steps to Call WCF Service using jQuery
答案 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 */
}
});