我正在尝试访问我的ajax调用中具有.scv
扩展名的网址。
当我在我的浏览器中手动输入网址时,我得到了数据,但是当我尝试在我的ajax调用中使用相同的网址时,它总是每次都进入错误功能。我真的不明白我在这里失踪了什么。
URL使用http://
看起来像这样site.com/myService/myservice.svc/Contacts/123/235
我的输出,当我在浏览器中提供网址
时[{"ContactNo":"","Countrycode":"","ContactType":"","UserName":"my group1"},{"ContactNo":"","Countrycode":"","ContactType":"","UserName":"my group2"},{"ContactNo":"","Countrycode":"","ContactType":"","UserName":"my group3"}]
Ajax电话:
var serviceUrl= site.com/myService/myservice.svc/Contacts/123/235
$.ajax({
type: "GET",
url: serviceUrl,
data: null,
processData: true,
contentType: "application/json",
dataType: "json",
cache: false,
success: function(data){
debugger; // never comes here
},
error: function (xhr) {
alert(xhr.responseText)
debugger;
}
});
对此有任何帮助都会有很大帮助。