獲取post請求body中的數(shù)據(jù) request怎么獲得requestbody里的參數(shù)?
request怎么獲得requestbody里的參數(shù)?三種方法:1請求.QueryString(“parameter”//獲取指定的參數(shù)并返回字符串2request.QueryStrings請求.Qu
request怎么獲得requestbody里的參數(shù)?
三種方法:1請求.QueryString(“parameter”//獲取指定的參數(shù)并返回字符串
2request.QueryStrings請求.QueryStrings()//獲取所有參數(shù)并返回數(shù)組
3request.setQuery查詢(“parameter”,“value of parameter”)//如果當前地址欄中存在此參數(shù),將更新此參數(shù);否則,將返回新的地址欄參數(shù)字符串。例如,當前地址欄參數(shù)字符串是:?Name=A&site=neveronlinealert(request.setQuery查詢(“name”,“bluedestination”)如果地址欄參數(shù)中有“name”,那么?Name=bluedestination&;site=never返回 onlinesetquery方法具有自動追加參數(shù)的功能。例如,當前地址欄參數(shù)字符串是:?站點=從不在線提醒(request.setQuery查詢(“name”,“bluedestiny”)返回?Site=never同樣,如果地址欄中沒有參數(shù),參數(shù)警報將自動添加(request.setQuery查詢(“name”,“bluedestiny”)返回?Name=bluedestiny<scriptlanguage=“JavaScript”><-->/作者:從不上網(wǎng):從不-在線.net
requestbody和requestparam區(qū)別?
Requestbody
處理httpentity傳遞的數(shù)據(jù)。它通常用于處理非內(nèi)容類型:httpentity Application/x-www-form-urlencoded。
在get請求中,@requestbody不適用,因為沒有httpentity。
在post請求中,通過httpentity傳遞的參數(shù)必須在請求頭中聲明數(shù)據(jù)類型content type。Spring MVC使用由
handleradapter配置的httpmessage轉(zhuǎn)換器解析httpentity中的數(shù)據(jù),然后將其綁定到相應(yīng)的bean。
Requestparam
用于處理內(nèi)容類型:content encoded for application/x-www-form-urlencoded。(在HTTP協(xié)議中,如果未指定內(nèi)容類型,則默認情況下傳遞的參數(shù)是application/x-www-form-urlencoded的類型。)