SpringMVC:先後端傳值總結

前言

文章主要來自:點這裏 。這也是博主的博客,主要分享了本身接觸過的一些後端技術,有不對的地方但願能夠提出。前端

因爲在寫代碼的時候常常須要先後端進行傳值,那麼總結下前端是如何給後端傳值,以及後端是如何接收的。如下包括:@PathVarible,@PathParam,@RequestParam,@ RequestBody,@RequestHeader 以及 Spring 自動封裝。json

@PathVarible

後端:後端

@RequestMapping(value="/findarticlesbyclassify/{classifyId}",method=RequestMethod.GET)
public String  findArticlesByClassify(@PathVariable String classifyId){
   ...
}

前端:http://localhost:8080/article/findarticlesbyclassify/aaac4e63-da8b-4def-a86c-6543d80a8a1app

@PathParam

後端:編碼

@RequestMapping(value = "/findarticlesbyclassify",method=RequestMethod.GET)
public String  findArticlesByClassify(@PathParam("classifyId") String classifyId){
    ...
}

前端:http://localhost:8080/article/findarticlesbyclassify?classifyId=aaac4e63-da8b-4def-a86c-6543d80a8a1url

@RequestParam

主要用來處理 Content-Type 爲 application/x-www-form-urlencoded編碼 的內容。3d

後端:code

@RequestMapping(value = "/findarticlesbyclassify",method=RequestMethod.GET)
public String  findArticlesByClassify(@RequestParam("classifyId") String classifyId){
    ...
}

前端:http://localhost:8080/article/findarticlesbyclassify?classifyId=aaac4e63-da8b-4def-a86c-6543d80a8a1orm

@ RequestBody

經常使用來處理Content-Type不是 application/x-www-form-urlencoded編碼 的內容。例如 json 數據。
當請求方式爲 GET、POST 方式時,使用時機:xml

  • application/x-www-form-urlencoded, 可選(即非必須,由於這種狀況的數據@RequestParam, @ModelAttribute也能夠處理,固然@ RequestBody也能處理);

  • multipart/form-data, 不能處理(即便用@ RequestBody不能處理這種格式的數據);

  • 其餘格式, 必須(其餘格式包括application/json, application/xml等。這些格式的數據,必須使用@ RequestBody來處理)

@RequestHeader

自動綁定請求頭到參數

public String testRequestHeader( 
                    @RequestHeader ( "Host" ) String hostAddr, 
                    @RequestHeader String Host, 
                    @RequestHeader String host ) {  
      ...
}

Spring自動封裝

後端,有Article對象:

public class Article extends BaseEntity{
    private String title;
    private String classifyId;
    private String mdData;
    private int readNum = 0;
}

前端傳的參數有:

var data = {
    "title":req.body.title,
    "mdData":req.body.mdData,
    "classifyId":req.body.classifyId,
    "tag1":req.body.tag1,
    "tag2":req.body.tag2,
    "tag3":req.body.tag3
    }

後端接受參數以下:

@RequestMapping(value = "addarticle",method=RequestMethod.POST)
public String addArticle(HttpServletRequest request,Article article){
   ...
}

那麼就會自動封裝到對象 article 中。

以上並無涉及任何原理方面的東西,主要是爲了方便 coding 時查閱。

寫在最後

  1. 寫出來,說出來才知道對不對,知道不對才能改正,改正了才能成長。

  2. 在技術方面,但願你們眼裏都容不得沙子。若是有不對的地方或者須要改進的地方但願能夠指出,萬分感謝。

相關文章
相關標籤/搜索