当前位置:   article > 正文

后端获取前端数据三种方式_linphone后端如何读取前端数据

linphone后端如何读取前端数据

@RequestParam

前端发出的请求:path?id=1;
  • 1
@RequestMapper(value="path")
public void test(@RequestParam("id") int id){
	System.out.println(id);
}
  • 1
  • 2
  • 3
  • 4
获取前端传来的非json格式的数据
  • 1
// 单个数据,@RequestParam中的值一定要与前端属性名一致
public void test(@RequestParam("name)" String name){
	System.out.println(params);
}

// 数组数据
@RequestMapper(value="path")
public void test(@RequestParam Map<String,Object> params){
	System.out.println(params);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

@PathVariable

前端发出的请求:path/{id};
  • 1
@RequestMapper(value="path/{id}")
public void test(@PathVariable("id") int id){
	System.out.println(id);
}
  • 1
  • 2
  • 3
  • 4

@RequestBody

获取前台出来的json格式的数据

$.ajax({
        type: 'POST',//方法类型
        url: url,
        contentType: 'application/json',
        data: {
        	"username":"小明",
        	"sex":"男",
        	"age":"18"
        },
        success: function (result) {
            if (result == 200) {
                $('#goodsModal').modal('hide');
                swal({
                    title: swlMessage,
                    type: 'success',
                    showCancelButton: false,
                    confirmButtonColor: '#1baeae',
                    confirmButtonText: '返回商品列表',
                    confirmButtonClass: 'btn btn-success',
                    buttonsStyling: false
                }).then(function () {
                    window.location.href = "/admin/goods";
                })
            } else {
                $('#goodsModal').modal('hide');
                swal(result.message, {
                    icon: "error",
                });
            }
            ;
        }
    });
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
// bean
public class User{
	private String username;
	private String sex;
		..
}

// Controller中代码片段
@RequestMapper(value="path/{id}",method = RequestMethod.POST)
public void test(@RequestBody User user){
	System.out.println(user);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/530875
推荐阅读
相关标签
  

闽ICP备14008679号