No 'Access-Control-Allow-Origin' header is present on the requested resource报错
No 'Access-Control-Allow-Origin' header is present on the requested resource
在controller层
如果用的是@GetMapping,它是一般用于路径的查询功能,当我们具体查询某个值时,可以用@GetMapping
http://localhost:8091/#/dormitory?id=id
@RequestMapping则是具体查询的实体类的值,当我们不是具体查询某个值时,就可以用@RequestMapping或者是@PostMapping
注意:一定要记得给你自己参数列表里面的实体类加@RequestBody注解!!!
然后将@GetMapping改成@RequestMapping就可以了
注意:我的是这么解决的,如果不好用就再找找吧!!!