我有一个 Web 服务,我想从页面后面的代码而不是源代码调用它。我在谷歌上搜索了这个主题,但在大多数链接中,我发现他们使用 ajax post 从源代码中调用了 Web 服务
$.ajax({
type: "POST",
url: "webservice.asmx/webservice",
data: "{}",
contentType: "application/json; charset=utf-8",
cache: false,
dataType: "json",
success: function (result) {
}
});
但我不想使用这种方法,我只想从我的代码页面调用 web 服务。有什么帮助吗?