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