前端vue项目调用后端springBoot接口,后端配置了跨域访问,但是出现了get请求能正常访问,但是post请求报403异常的情况。如下图
最后发现是后端的问题,正常配置的后端跨域配置中需要加上一句:
.allowedOriginPatterns("*")
具体原因:Springboot的版本问题
完整版跨域配置如下:
java">package ***.example.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMv***onfigurer;
@Configuration
public class WebMV***onfig implements WebMv***onfigurer {
/**
* 配置跨域
* @param registry
*/
@Override
public void addCorsMappings(CorsRegistry registry) {
//跨域配置:前端是8080端口,后端是8888
//要允许8080访问接口服务
registry.addMapping("/**")
.allowedOrigins("http://localhost:8080")
.allowCredentials(true)
.allowedMethods("GET","POST")
.allowedOriginPatterns("*")
.maxAge(3600)
;
}
}