Springboot 先後端參數交互方式

springboot 先後端參數交互方式

Get 方式:

1. localhost:8080/index?id=1
@RequestParam(value = "grade", defaultValue = "") String grade)
2.
localhost:8080/index/{reportType}
localhost:8080/index-{reportType}
@RequestMapping("/commonReportForm/{reportType}")
    @ResponseBody
    public ModelAndView index(@PathVariable(name = "reportType", required = false) Integer reportType, ModelAndView mv) { ....}
@RequestMapping("/commonReportForm-{reportType}")
    @ResponseBody
    public ModelAndView index(@PathVariable(name = "reportType", required = false) Integer reportType, ModelAndView mv) { ....}

Post 方式:

直接以一個bean接收
public Object save( User user) {....}

前端傳參方式:前端

  1. form 表單 - * input 中 name 要與 bean中的屬性名相同
  2. ajax :
$.ajax({
        type: "POST",
        url: dbrwListpath,
        data: {
            "id": id,
            "name": name,
        },
        dataType: "json",
        success: function (data) {
            //do something..
        },
        error: function (data) {
            //do something..
        }
    });
json 傳參方式:
public Object save(@RequestBody User user) {....}

前端ajax:ajax

$.ajax({
        type: "POST",
        headers: {
            'Accept': 'application/json',
            'Content-Type': 'application/json'
        },
        url: dbrwListpath,
        data: {
            "id": id,
            "name": name,
        },
        dataType: "json",
        success: function (data) {
            //do something..
        },
        error: function (data) {
            //do something..
        }
    });
Dto 封裝方式:
public Object save(@RequestBody DataDto dto) {....}
public class DataDto{
    
     //學校id
    private Integer schoolId;
    //幼兒信息
    private List<User> users;
    
    //get set ...
}

前端ajax數據格式:spring

//示例

   var user = [];
    for (var i = 0; i < clen; i++) {
        var c = {};
        c.id = 1;
        c.name = tom;
        user.push(c);
    }


//datas屬性名需與Dto實體的屬性名相同
var datas = {
    
    schoolId:schoolId,
    user:user
    
};

  $.ajax({
        type: "POST",
        headers: {
            'Accept': 'application/json',
            'Content-Type': 'application/json'
        },
        url: "/comprehensiveDeclaration/comprehensive-" + comprehensiveId + "/step1-save",
        data: JSON.stringify(datas),  
        dataType: "json",
        success: function (response) {

         //do something..
    
        },
        error: function (data) {
          //do something..
        }
    });
相關文章
相關標籤/搜索