Warning: mysqli_query(): (HY000/1021): Disk full (C:\xampp\tmp\#sql6704_49a71_1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") in C:\xampp\htdocs\wordpress\wp-includes\wp-db.php on line 2033
解决前后端分离验证码获取不到及提交CORS 策略阻止的问题 - ZGEO博客

问题:    

  1. 提交获取不到验证码
  2. 下面的报错(可以提交,但报错)

Access to XMLHttpRequest at ‘http://localhost:8999/public/exchange/insert?n=cesium%E5%BC%80%E5%8F%91&s=cesium%E5%BC%80%E5%8F%91&c=3yx8’ from origin ‘http://localhost:63342’ has been blocked by CORS policy: The value of the ‘Access-Control-Allow-Origin’ header in the response must not be the wildcard ‘*’ when the request’s credentials mode is ‘include’. The credentials mode of requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute.

  1. 前端ajax设置(前端ajax访问时要加上”xhrFields: {withCredentials: true}” ,实现session可以传递,验证码是根据session获取的)

url: base_url + “:” + port + “/public/exchange/insert”,
xhrFields: {
withCredentials: true
}, crossDomain: true,

  1. 后端配置SpringBoot

    CorsConfiguration配置前面三个是跨域配置,setAllowCredentials是解决前端request’s credentials报错的问题

     

private CorsConfiguration buildConfig() {
CorsConfiguration corsConfiguration = new CorsConfiguration();
corsConfiguration.addAllowedOrigin("*"); //允许任何域名
corsConfiguration.addAllowedHeader("*"); //允许任何头
corsConfiguration.addAllowedMethod("*"); //允许任何方法
corsConfiguration.setAllowCredentials(true);
return corsConfiguration;
}


 

发表评论

邮箱地址不会被公开。 必填项已用*标注