私はこのシンプルなWebサービスを持っています
<WebMethod()> _
Public Function HelloWorld() As String
Return "[1255545454545,4]"
End Function
これはクライアント側になります>
$.ajax({
type: "POST",
url: "WebService1.asmx/HelloWorld",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(response) {
alert(response);
},
failure: function(msg) {
alert(msg);
}
});
});
取得した[オブジェクトオブジェクト]の代わりに実際の値を取得するにはどうすればよいですか