当前位置:   article > 正文

前端后端交互请求的几种方式_前端向后端发delete请求 和回调处理响应

前端向后端发delete请求 和回调处理响应

以下是常见的请求方式及其使用例子:

常见的请求方式有以下几种:

1. GET:获取资源,请求参数在URL中传递,一般用于数据查询操作。
2. POST:提交数据,请求参数在请求体中传递,一般用于数据新增和修改操作。
3. PUT:更新数据,请求参数在请求体中传递,一般用于数据更新操作。
4. DELETE:删除数据,请求参数在URL中传递,一般用于数据删除操作。

一、GET请求

1.前端使用例子:
axios.get('/api/getUserInfo?id=123')
  .then(response => {
    console.log(response.data);
  })
  .catch(error => {
    console.log(error);
  });

2.后端使用例子:
@RequestMapping(value = "/getUserInfo", method = RequestMethod.GET)
@ResponseBody
public User getUserInfo(@RequestParam("id") String id) {
    User user = userService.getUserById(id);
    return user;
}
```

二、POST请求

1.前端使用例子:
axios.post('/api/login', {
    username: 'admin',
    password: '123456'
  })
  .then(response => {
    console.log(response.data);
  })
  .catch(error => {
    console.log(error);
  });

2.后端使用例子:
@RequestMapping(value = "/login", method = RequestMethod.POST)
@ResponseBody
public Map<String, Object> login(@RequestBody Map<String, Object> params) {
    String username = (String) params.get("username");
    String password = (String) params.get("password");
    // 验证用户名和密码
    // ...
    Map<String, Object> result = new HashMap<>();
    result.put("code", 200);
    result.put("msg", "登录成功");
    return result;
}

三、PUT请求

1.前端使用例子:
axios.put('/api/updateUserInfo', {
    id: 123,
    name: '张三',
    age: 18
  })
  .then(response => {
    console.log(response.data);
  })
  .catch(error => {
    console.log(error);
  });

2.后端使用例子:
@RequestMapping(value = "/updateUserInfo", method = RequestMethod.PUT)
@ResponseBody
public Map<String, Object> updateUserInfo(@RequestBody User user) {
    // 更新用户信息
    Map<String, Object> result = new HashMap<>();
    result.put("code", 200);
    result.put("msg", "更新成功");
    return result;
}

四、DELETE请求

1.前端使用例子:
axios.delete('/api/deleteUser?id=123')
  .then(response => {
    console.log(response.data);
  })
  .catch(error => {
    console.log(error);
  });

2.后端使用例子:
@RequestMapping(value = "/deleteUser", method = RequestMethod.DELETE)
@ResponseBody
public Map<String, Object> deleteUser(@RequestParam("id") String id) {
    // 删除用户信息
    // ...
    Map<String, Object> result = new HashMap<>();
    result.put("code", 200);
    result.put("msg", "删除成功");
    return result;
}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/517188
推荐阅读
相关标签
  

闽ICP备14008679号