クロスドメイン axios を実装する 3 つの方法: 1. [mian.js] で axios を参照、コードは [Vue.prototype.$axios = axios]; 2. ページで axios を参照、コードは [this.$axios.post('/api/].
##クロスドメイン Axios を実現する 3 つの方法:
1. mian.js は axiosimport axios from 'axios' Vue.prototype.$axios = axios
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’即可 } } }
this.$axios.post('/api/userlogin/login', Qs.stringify({ username: this.username, password: this.password })) .then((response) => { console.log(response) }) .catch((response) => { console.log(response) })
関連する学習に関する推奨事項:
以上がAxios でのクロスドメイン実装の 3 つの方法は何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。