axios发送post请求,springMVC接收不到数据问题

通过@RequestBody 注解,springmvc可以把json中的数据绑定到Map中, 我们就可以取出了.

@RequestMapping("/searchKey")
@ResponseBody
public ResponseEntity search(HttpServletRequest req,@RequestBody Map map){

    String key = map.get("key").toString();
    List, Object>> resultMap = indexService.search(key);
    return new ResponseEntity(returnObject("result",resultMap),HttpStatus.OK);
} 
  

你可能感兴趣的:(小问题解决)