ASMX サービスを呼び出すと、次のようなメリットがあります:
ProjectName.Services.ServiceName.MethodName('methodParameter', function (result) {
// do something with result
});
これを持っています:
$.ajax({
type: "POST",
url: webMethod,
data: parameters,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
//
},
error: function(e){
//
}
});
(「WCF を使用するだけで、ASMX は時代遅れです」には興味がないことに注意してください。これは純粋に AJAX 用であるため、今のところは喜んで使用します。)