2012-10-02 109 views
17

我需要獲取原始請求字符串。以下是發送給Controller的http請求示例。其實,我需要發佈數據(最後一行)。我怎麼弄到的?獲取ASP.NET MVC中的原始請求

請注意,我不想使用自動JSON模型聯編程序。其實,我需要原始的JSON文本

POST http://www.anUrl.com/CustomExport/Unscheduled HTTP/1.1 
Accept: application/json, text/javascript, */*; q=0.01 
Content-Type: application/json; charset=utf-8 
X-Requested-With: XMLHttpRequest 
Referer: http://www.anUrl.com/CustomExport 
Accept-Language: en-us 
Accept-Encoding: gzip, deflate 
User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) 
Host: localhost:8000 
Content-Length: 102 
Connection: Keep-Alive 
Pragma: no-cache 

{"runId":"1","fileDate":"8/20/2012","orderStartMinDate":"10/02/2012","orderStartMaxDate":"10/02/2012"} 

這最後一行是我需要的。這不是進來

var input = new StreamReader(Request.InputStream).ReadToEnd(); 

回答

21

在這一點上,流已經被讀到最後。在您自己閱讀之前,您需要將InputStream的位置設回到開頭。

Request.InputStream.Position = 0; 
var input = new StreamReader(Request.InputStream).ReadToEnd(); 
+0

謝謝,問題恰恰在於 –