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({
        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数据格式:

//示例

   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..
        }
    });
  • 0
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值