您好,登錄后才能下訂單哦!
本篇文章為大家展示了利用Nginx怎么解決前端訪問資源跨域問題,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
1、首先介紹Windows環境下Nignx的相關命令操作
nginx常用命令:
驗證配置是否正確: nginx -t
查看Nginx的版本號:nginx -V
啟動Nginx:start nginx
快速停止或關閉Nginx:nginx -s stop
正常停止或關閉Nginx:nginx -s quit
配置文件修改重裝載命令:nginx -s reload
在停止ngix后,會自動刪除/logs目錄下的nginx.pid
可以使用命令nginx -c conf/nginx.conf 重新創建 或者 再次啟動nginx
查看nignx 監聽端口 是否啟動成功
netstat -ano | findstr 端口號
解決關閉nignx后 端口仍在監聽中
1、netstat -ano | findstr 端口號 #獲取到PID
2、tasklist | findstr "PID" #命令找到nginx進程信息
3、taskkill /f /t /im nginx.exe #結束nginx進程
2、介紹如何配置Nignx 解決跨域問題
前端ip端口號:http://localhost:8080/
后端ip端口號:http://localhost:8082/
現在我們在不做跨域設置時,前端請求如下
uni.request({ url:'http://localhost:8082/ApiController/test', success:(res)=>{ console.log(res.data) }, })
訪問地址:'http://localhost:8082/ApiController/test',就會出現
那么我們進行Nignx配置
編輯 /config/nginx.conf此文件
1)添加頭信息,在nginx.conf配置文件http塊中添加跨域訪問配置
add_header Access-Control-Allow-Origin *; //允許所有域名跨域訪問代理地址 add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-Control-Allow-Methods GET; //跨域請求訪問請求方式,
2)設置反向代理
server { listen 80; #配置nignx的監聽端口 server_name localhost; #配置nignx的監聽地址 location /ApiController{ #監聽地址 以/ApiController開頭的地址 proxy_pass http://localhost:8082; #轉發地址 } }
此時配置后我們前端訪問url
http://localhost:8082/ApiController/test 應修改為http://localhost:80/ApiController/test
#此時監聽
以localhost為域名
以80為端口
以/ApiController為地址開頭
才會進行地址轉發
uni.request({ url:'http://localhost:80/ApiController/test', success:(res)=>{ console.log(res.data) }, })
結果:(訪問成功)
上述內容就是利用Nginx怎么解決前端訪問資源跨域問題,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。