报错:
这个错误提示表明在发送XMLHttpRequest请求时,由于同域安全策略的限制,浏览器阻止了对该资源的访问。具体来说,请求是从’http://localhost:8080’发起的,而目标资源位于
‘http://localhost:8088/upload’。
CORS,全称Cross-Origin Resource Sharing,是一种允许当前域(domain)的资源被其他域(domain)的脚本请求访问的机制。
SpringBoot上解决跨域问题的3种方法:
1.在controller上添加@CrossOrigin
注解:
@PostMapping("/upload")
@CrossOrigin
public Result upload(@RequestParam MultipartFile file){
System.out.println(file.