這篇文章主要講解了“vue中發(fā)送請(qǐng)求的方法是什么”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“vue中發(fā)送請(qǐng)求的方法是什么”吧!
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比譙城網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式譙城網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋譙城地區(qū)。費(fèi)用合理售后完善,十載實(shí)體公司更值得信賴。
在vue中,需要使用vue-resource、axios等插件來發(fā)送請(qǐng)求。axios是一個(gè)基于Promise的HTTP請(qǐng)求客戶端,用來發(fā)送請(qǐng)求,也是vue2.0官方推薦的,同時(shí)不再對(duì)vue-resource進(jìn)行更新和維護(hù)。
本教程操作環(huán)境:windows7系統(tǒng)、vue2.9.6版,DELL G3電腦。
1)vue本身不支持發(fā)送AJAX請(qǐng)求,需要使用vue-resource、axios等插件實(shí)現(xiàn)。
2) axios是一個(gè)基于Promise的HTTP請(qǐng)求客戶端,用來發(fā)送請(qǐng)求,也是vue2.0官方推薦的,同時(shí)不再對(duì)vue-resource進(jìn)行更新和維護(hù)。
使用axios發(fā)送AJAX請(qǐng)求
1、安裝axios并引入
1)npm的方式: $ npm install axios -S 或 cnpm install axios -S
2)bower的方式:$ bower install axios
3)cdn的方式:
2、如何引入使用axios
安裝其他插件的時(shí)候,可以直接在 main.js 中引入并 Vue.use(),但是 axios 并不能 use,只能每個(gè)需要發(fā)送請(qǐng)求的組件中即時(shí)引入
為了解決這個(gè)問題,有兩種開發(fā)思路,
一是在引入 axios 之后,修改原型鏈
二是結(jié)合 Vuex,封裝一個(gè) aciton
方案一:改寫原型鏈
首先在 main.js 中引入 axios
import axios from 'axios' Vue.prototype.$http= axios
在組件中發(fā)送http請(qǐng)求
this.$http.post('/user',{name: 'xiaoming'}) this.$http({method: 'post',url: '/user',data: {name: 'xiaoming'}}) //發(fā)送get請(qǐng)求 this.$http.get('/user?ID=12345') .then(res=> { console.log(response); }) .catch(err=> { console.log(error); }); this.$http.get('/user',{params:{ID:12345}}) .then(res=> { console.log(response); }) .catch(err=> { console.log(error); }); //發(fā)送post請(qǐng)求 this.$http.post('/user', {name: 'xiaoming'} ) .then(res=> { console.log(res) }) .catch(err=> { console.log(err)});
3、封裝axios進(jìn)行調(diào)用
/**** request.js ****/ // 導(dǎo)入axios import axios from 'axios' // 使用element-ui Message做消息提醒 import { Message} from 'element-ui'; //1. 創(chuàng)建新的axios實(shí)例, const service = axios.create({ // 公共接口--這里注意后面會(huì)講 baseURL: '', // 超時(shí)時(shí)間 單位是ms,這里設(shè)置了3s的超時(shí)時(shí)間 timeout: 3 * 1000 }) // 2.請(qǐng)求攔截器 service.interceptors.request.use(config => { //發(fā)請(qǐng)求前做的一些處理,數(shù)據(jù)轉(zhuǎn)化,配置請(qǐng)求頭,設(shè)置token,設(shè)置loading等,根據(jù)需求去添加 config.data = JSON.stringify(config.data); //數(shù)據(jù)轉(zhuǎn)化,也可以使用qs轉(zhuǎn)換 console.log('請(qǐng)求攔截器中',config) config.headers = { 'Content-Type':'application/x-www-form-urlencoded' //配置請(qǐng)求頭 } //注意使用token的時(shí)候需要引入cookie方法或者用本地localStorage等方法,推薦js-cookie // const token = getCookie('名稱');//這里取token之前,你肯定需要先拿到token,存一下 // if(token){ // config.params = {'token':token} //如果要求攜帶在參數(shù)中 // config.headers.token= token; //如果要求攜帶在請(qǐng)求頭中 // } return config }, error => { console.log('錯(cuò)誤') Promise.reject(error) }) // 3.響應(yīng)攔截器 service.interceptors.response.use(response => { //接收到響應(yīng)數(shù)據(jù)并成功后的一些共有的處理,關(guān)閉loading等 return response }, error => { console.log('error',error) /***** 接收到異常響應(yīng)的處理開始 *****/ if (error && error.response) { // 1.公共錯(cuò)誤處理 // 2.根據(jù)響應(yīng)碼具體處理 switch (error.response.status) { case 400: error.message = '錯(cuò)誤請(qǐng)求' break; case 401: error.message = '未授權(quán),請(qǐng)重新登錄' break; case 403: error.message = '拒絕訪問' break; case 404: error.message = '請(qǐng)求錯(cuò)誤,未找到該資源' // window.location.href = "/" break; case 405: error.message = '請(qǐng)求方法未允許' break; case 408: error.message = '請(qǐng)求超時(shí)' break; case 500: error.message = '服務(wù)器端出錯(cuò)' break; case 501: error.message = '網(wǎng)絡(luò)未實(shí)現(xiàn)' break; case 502: error.message = '網(wǎng)絡(luò)錯(cuò)誤' break; case 503: error.message = '服務(wù)不可用' break; case 504: error.message = '網(wǎng)絡(luò)超時(shí)' break; case 505: error.message = 'http版本不支持該請(qǐng)求' break; default: error.message = `連接錯(cuò)誤${error.response.status}` } } else { // 超時(shí)處理 if (JSON.stringify(error).includes('timeout')) { Message.error('服務(wù)器響應(yīng)超時(shí),請(qǐng)刷新當(dāng)前頁') } Message.error('連接服務(wù)器失敗') } Message.error(error.message) /***** 處理結(jié)束 *****/ //如果不需要錯(cuò)誤處理,以上的處理過程都可省略 return Promise.resolve(error.response) }) //4.導(dǎo)入文件 export default service
/**** http.js ****/ // 導(dǎo)入封裝好的axios實(shí)例 import request from './request' const http ={ /** * methods: 請(qǐng)求 * @param url 請(qǐng)求地址 * @param params 請(qǐng)求參數(shù) */ get(url,params){ const config = { method: 'get', url:url } if(params) config.params = params return request(config) }, post(url,params){ console.log(url,params) const config = { method: 'post', url:url } if(params) config.data = params return request(config) }, put(url,params){ const config = { method: 'put', url:url } if(params) config.params = params return request(config) }, delete(url,params){ const config = { method: 'delete', url:url } if(params) config.params = params return request(config) } } //導(dǎo)出 export default http
import http from './http' // /** * @parms resquest 請(qǐng)求地址 例如:http://197.82.15.15:8088/request/... * @param '/testIp'代表vue-cil中config,index.js中配置的代理 */ // let resquest = "" // get請(qǐng)求 export function getListAPI(resquest,params){ return http.get(`${resquest}/getList.json`,params) } // post請(qǐng)求 export function postFormAPI(resquest,params){ console.log('發(fā)送post請(qǐng)求') return http.post(`${resquest}`,params) } // put 請(qǐng)求 export function putSomeAPI(resquest,params){ return http.put(`${resquest}/putSome.json`,params) } // delete 請(qǐng)求 export function deleteListAPI(resquest,params){ return http.delete(`${resquest}/deleteList.json`,params) }
解決Vue跨域問題:
解決方法:在腳手架中的config下的index.js中
在 dev 的 proxyTable 對(duì)象中添加這些屬性
// Paths assetsSubDirectory: 'static', assetsPublicPath: '/', proxyTable: { "/api":{ target:"https://xin.yuemei.com/V603/channel/getScreenNew/",//接口域名 changeOrigin:true,//是否跨域 pathRewrite:{ "^/api":""http://重寫為空,這個(gè)時(shí)候api就相當(dāng)于上面target接口基準(zhǔn)地址 } } },
然后請(qǐng)求這里用axios請(qǐng)求
請(qǐng)求的時(shí)候前綴api就相當(dāng)于基準(zhǔn)地址了
axios.post("/api").then(res => { console.log(res); this.data = res.data.data; }); //如果有參數(shù)請(qǐng)求 axios.post("/api?key=111").then(res => { console.log(res); this.data = res.data.data; });
配置完記得重跑一下項(xiàng)目(切記)
想要發(fā)送Ajax請(qǐng)求 通過兩種方式
一:通過XHR對(duì)象
請(qǐng)求行:
method:post 或get url:請(qǐng)求地址
請(qǐng)求頭:
host:主機(jī)地址
cookie
content-type:請(qǐng)求體內(nèi)容請(qǐng)求體:
響應(yīng)行:status
響應(yīng)頭:多個(gè)響應(yīng)頭
響應(yīng)體:
json/圖片/css/js/html
二:通過fetch函數(shù)
感謝各位的閱讀,以上就是“vue中發(fā)送請(qǐng)求的方法是什么”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)vue中發(fā)送請(qǐng)求的方法是什么這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!