• postman使用教程


    st请求: 

    @PostMapping(value="/user")

    url:

    localhost:8088/demo/user
    首先设置Header:

    1.2 post请求:

    @RequestMapping(value="/user/{page}/{limit}",method={RequestMethod.GET,RequestMethod.POST})
    public ResMessage queryPage(@RequestBody DTO dto,@PathVariable(required=true)int page,@PathVariable(required=true)int limit)

    url:

    http://localhost:8088/demo/user/2/3

     

    点击提交就可以了,

    2.get请求

    4.put请求、Delete请求和post请求设置一下,这里不做赘述

    注:Restful风格的请求,post(增)、删(delete)、改(put)、查(get)

  • 相关阅读:
    js 模块循环加载
    英文
    浏览器
    ecma
    Speaking JavaScript
    es6 exploringjs 2
    es6 兼容性
    es6 中文
    Exploring ES6
    探索ES6(ES2015)
  • 原文地址:https://www.cnblogs.com/zhangshitong/p/7778059.html
Copyright © 2020-2023  润新知