1. 程式人生 > >postman與spring mvc引數除錯,陣列型別引數

postman與spring mvc引數除錯,陣列型別引數

例如springmvc,介面定義如下,deleteByIds接收資料型別引數
public Integer deleteByIds(@RequestParam String[] ids){
    return 1;
}

@RequestParam,用來處理請求頭Content-Type: 為 application/x-www-form-urlencoded編碼的內容。(Http協議中,如果不指定Content-Type,則預設傳遞的引數就是application/x-www-form-urlencoded型別)。所以,針對postman,必須選擇正確的請求頭。

在選擇正確的請求頭後,下面兩種方式的傳參,都可以成功被後臺獲得。

方法一

方法二