我有一个使用 ServiceStack 创建的 Web 服务。我正在尝试使用 javascript/jquery 在 asp.net 中使用。
下面的代码是我尝试过的。
$(document).ready(function() {
$.ajax({
url: "http://localhost:55037/Json/syncreply/GetSourceData?SourceID=1&Active=true",
type: "GET",
dataType: "json",
//data: "{SourceID: 1, Active: true }",
contentType: "application/json; charset=utf-8",
success: function(msg) {
debugger
alert(msg)
},
error: function(e) {
alert(e.statusText);
}
});
});
似乎它没有到达网络服务,它返回一条错误消息“无传输”。