react跨域問題的解決方法:首先在【package.json】中加入【proxy": "http://localhost:8000】;然後頁面中的請求【fetch('/api/userdata /')】會轉送到proxy中的位址。
react跨域問題的解決方法:
一、最簡單的動作
在package.json中加入"proxy": "http://localhost:8000"
然後你頁面中的請求fetch('/api/userdata /')就會轉送到proxy中的位址
也就是真實的請求是http://0.0.2.89:7300/api/userdata/,而且也不會有跨域問題
因為在瀏覽器看來,你只是發了fetch('/api/userdata/'),沒有跨域問題
二、新增多個代理程式
#在package.json中加入
"proxy": { "/api": { "target": "http://localhost:8000", "changeOrgin": true }, "/app": { "target": "http://localhost:8001", "changeOrgin": true } },
使用方法
axios.post('/api/users').then(res =>{ console.log(res) })
但是當重新執行npm start時會報錯,說"proxy"的值應該是一個字串類型,而不能是Object。
原因是由於react-scripts模組的版本過高,需要刪除到原始目錄下node_modules中的react-scripts資料夾,安裝低版本
npm install react-script@1.1 .1 --save
的確跨域問題可以解決了,但是又出現了新的問題,我在專案中使用了sass,當把react-scripts改為低版本後並不支援對sass的解析,如果要支持sass的話,需要到node_modules/react-scripts/config中進行配置,但是不建議你這樣做。
三、最佳推薦
下載http-proxy-middleware
npm i http-proxy-middleware --save
#建立src/setupProxy.js
const proxy = require('http-proxy-middleware') module.exports = function(app) { // /api 表示代理路径 // target 表示目标服务器的地址 app.use( proxy('/api', { // http://localhost:4000/ 地址只是示例,实际地址以项目为准 target: 'http://localhost:4000', // 跨域时一般都设置该值 为 true changeOrigin: true, // 重写接口路由 pathRewrite: { '^/api': '' // 这样处理后,最终得到的接口路径为: http://localhost:8080/xxx } }) ) }
相關免費學習推薦:JavaScript(影片)
以上是跨react域問題怎麼解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!