中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot vue 跨域問題的解決

發布時間:2020-10-14 20:02:14 來源:腳本之家 閱讀:288 作者:Sky786905664 欄目:編程語言

1、Spring Boot跨域配置有兩種方法

在后端使用Spring Boot。Spring Boot跨域非常簡單,只需書寫以下代碼即可。

@Configuration
public class CustomCORSConfiguration {
 private CorsConfiguration buildConfig() {
  CorsConfiguration corsConfiguration = new CorsConfiguration();
  corsConfiguration.addAllowedOrigin("*");
  corsConfiguration.addAllowedHeader("*");
  corsConfiguration.addAllowedMethod("*");
   corsConfiguration.setAllowCredentials(true);
   return corsConfiguration;
 }

 @Bean
 public CorsFilter corsFilter() {
  UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
  source.registerCorsConfiguration("/**", buildConfig());
  return new CorsFilter(source);
 }
}

2.Nginx跨域配置

Spring Boot應用用Nginx反向代理。而前端跨域請求的需求不減。

Nginx跨域也比較簡單,只需添加以下配置即可。

location / {
 proxy_pass http://localhost:8080;
 if ($request_method = 'OPTIONS') {
 add_header 'Access-Control-Allow-Origin' '*';
 add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
 add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Token';
 add_header 'Access-Control-Max-Age' 1728000;
 add_header 'Content-Type' 'text/plain; charset=utf-8';
 add_header 'Content-Length' 0;
 return 204;
 }
 if ($request_method = 'POST') {
 add_header 'Access-Control-Allow-Origin' '*';
 add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
 add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Token';
 add_header 'Access-Control-Expose-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Token';
 }
 if ($request_method = 'GET') {
 add_header 'Access-Control-Allow-Origin' '*';
 add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
 add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Token';
 add_header 'Access-Control-Expose-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Token';
 }
}

其中:add_header 'Access-Control-Expose-Headers' 務必加上你請求時所帶的header。

例如本例中的“Token”,其實是前端傳給后端過來的。如果記不得也沒有關系,瀏覽器的調試器會有詳細說明。

三、瀏覽器設置跨域

Chrome、Firefox本身是可以通過配置支持跨域請求的。

Chrome跨域:參考文檔:Chrome跨域

四、前端Vue設置跨域

先設置 axios

axios.defaults.withCredentials = true;
axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; //證明是ajax 請求
psot 請求加入
headers: {
  'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
}

設置Config 文件下面的index.js 然后就可以再其它頁面訪問了

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

淳安县| 京山县| 霍山县| 商丘市| 比如县| 恩施市| 乐平市| 科技| 安龙县| 洮南市| 芜湖市| 新龙县| 阳谷县| 内江市| 闽侯县| 常宁市| 静宁县| 杨浦区| 碌曲县| 长阳| 定远县| 东平县| 化州市| 仁怀市| 重庆市| 丽江市| 罗平县| 凯里市| 广元市| 芜湖县| 榆社县| 丹凤县| 德庆县| 时尚| 小金县| 黑山县| 东乌珠穆沁旗| 屯留县| 正阳县| 怀柔区| 洪湖市|