我有一个使用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);
}
});
});
似乎它没有到达Web服务,它返回错误消息“No Transport”。