axios實作跨域的三種方法:1、在【mian.js】中引用axios,程式碼為【Vue.prototype.$axios = axios】;2、在頁中引用axios,程式碼為【this.$axios.post('/api/】。
#axios實作跨域的三種方法:
1. mian.js 引用axios
import axios from 'axios' Vue.prototype.$axios = axios
2.config/index.js 的dev中加入以下程式碼
proxyTable: { '/api': { target: 'http://127.0.0.1/hyhy/',//设置你调用的接口域名和端口号 别忘了加http changeOrigin: true, pathRewrite: { '^/api': '/'//这里理解成用‘/api’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调 用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可 } } }
3.在頁面中引用
this.$axios.post('/api/userlogin/login', Qs.stringify({ username: this.username, password: this.password })) .then((response) => { console.log(response) }) .catch((response) => { console.log(response) })
#相關學習推薦:js影片教學
以上是axios實作跨域分別是哪三種方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!