Jsonオブジェクトを解析しようとしていますが、コンテキストのどこにあるのかわかりません。リクエストオブジェクトは、実際のデータを見つけることができます(文字列形式だと思います)。
これは私がJsonデータをサーバーに渡す方法です
$(function () {
// Do your stuff here
alert("wööööö");
urlToHandler = 'JSonTestHandler.ashx';
jsonData = '{ "FavoriteFood":"Pasta with butter and cheese", "FavoriteSport": "Submission Wrestling", "FavoriteGame": "Starcraft 2", "FavoriteMusic": "Hip Hop" }';
$.ajax({
url: urlToHandler,
data: jsonData,
dataType: 'json',
type: 'POST',
contentType: 'application/json',
success: function (data) {
setAutocompleteData(data.responseDateTime);
},
error: function (data, status, jqXHR) {
alert('There was an error.');
}
}); // end $.ajax
});