前端:(黄色内容为必选项!!!)

 axios({
    url: "/access/getArr",
    method: "post",
    data: JSON.stringify([1,2,3,4]),
    headers: {
      "Content-Type": "application/json",
    },
  });

后端:

    @RequestMapping(value = "/getArr", method = RequestMethod.POST)
    @ResponseBody
    public Result getArr(@RequestBody String[] data) {
        //...return new Result(true, "success", 200);
    }

 

 posted on 2023-09-23 15:47  laremehpe  阅读(136)  评论(0编辑  收藏  举报