次のような ASP.NET ページ メソッドへの jQuery Ajax 呼び出しでは、次のようになります。
function getUsers() {
$.ajax({
type: "POST",
url: "http://{localhost}:8078/Default.aspx/GetJson2",
data: "{}",
contentType: "application/json",
dataType: "json",
success: function (msg) {
$("#Result").text(msg.d)
}
)};
.d
私のCLRオブジェクトにはそのようなプロパティがmsg
ありませんが、サーバーから返されたデータはのプロパティ内にあります。どうしてこれなの?