0

重複の可能性:
ASP.Netcontext.Requestを介してJSONを取得する方法

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


});
4

1 に答える 1

0

これを試して

string jsonInput=  new System.IO.StreamReader(context.Request.InputStream, System.Text.Encoding.UTF8).ReadToEnd();
于 2012-09-21T07:56:27.243 に答える