溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue axios數(shù)據(jù)請(qǐng)求及vue中使用axios的示例分析

發(fā)布時(shí)間:2021-08-10 11:39:26 來源:億速云 閱讀:164 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)vue axios數(shù)據(jù)請(qǐng)求及vue中使用axios的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

axios 簡(jiǎn)介

axios 是一個(gè)基于Promise 用于瀏覽器和 nodejs 的 HTTP 客戶端,它本身具有以下特征:

--------------------------------------------------------------------------------
?從瀏覽器中創(chuàng)建 XMLHttpRequest
?從 node.js 發(fā)出 http 請(qǐng)求
?支持 Promise API
?攔截請(qǐng)求和響應(yīng)
?轉(zhuǎn)換請(qǐng)求和響應(yīng)數(shù)據(jù)
?取消請(qǐng)求
?自動(dòng)轉(zhuǎn)換JSON數(shù)據(jù)
?客戶端支持防止 CSRF/XSRF

在vue中數(shù)據(jù)請(qǐng)求需要先安裝axios

 npm i --save axios

我們?cè)谑褂谜?qǐng)求數(shù)據(jù)的頁(yè)面導(dǎo)入axios

import  axios from "axios"

然后在methods里面寫數(shù)據(jù)的請(qǐng)求

 methods:{
  getInfo(){
   let url = "url"
   axios.get(url).then((res)=>{
     //console.log(res)
     this.list1 = res
   })
}

在生命周期調(diào)用一下,一般我們數(shù)據(jù)請(qǐng)求使用的生命周期是Mounted

 mounted() {
  this.getInfo()       
 }

這樣我們就完成了axios的get方法請(qǐng)求

然后我們簡(jiǎn)答的說一說post請(qǐng)求,post請(qǐng)求與get請(qǐng)求其實(shí)變得不多

 postInfo() {
   let url = "..."
   var params = new URLSearchParams();
   params.append('key', index);
   axios.post(url, params).then((res) => {
     console.log(res)
   })
 }

這樣我們就可以成功的使用post方法請(qǐng)求數(shù)據(jù)了

補(bǔ)充:下面看下vue中使用axios

1.安裝axios

npm:

$ npm install axios -S

cdn

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

2.配置axios

在項(xiàng)目中新建api/index.js文件,用以配置axios

api/index.js

import axios from 'axios';
let http = axios.create({
 baseURL: 'http://localhost:8080/',
 withCredentials: true,
 headers: {
  'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8'
 },
 transformRequest: [function (data) {
  let newData = '';
  for (let k in data) {
   if (data.hasOwnProperty(k) === true) {
    newData += encodeURIComponent(k) + '=' + encodeURIComponent(data[k]) + '&';
   }
  }
  return newData;
 }]
});
function apiAxios(method, url, params, response) {
 http({
  method: method,
  url: url,
  data: method === 'POST' || method === 'PUT' ? params : null,
  params: method === 'GET' || method === 'DELETE' ? params : null,
 }).then(function (res) {
  response(res);
 }).catch(function (err) {
  response(err);
 })
}
export default {
 get: function (url, params, response) {
  return apiAxios('GET', url, params, response)
 },
 post: function (url, params, response) {
  return apiAxios('POST', url, params, response)
 },
 put: function (url, params, response) {
  return apiAxios('PUT', url, params, response)
 },
 delete: function (url, params, response) {
  return apiAxios('DELETE', url, params, response)
 }
}

這里的配置了POST、GET、PUT、DELETE方法。并且自動(dòng)將JSON格式數(shù)據(jù)轉(zhuǎn)為URL拼接的方式

同時(shí)配置了跨域,不需要的話將withCredentials設(shè)置為false即可

并且設(shè)置了默認(rèn)頭部地址為:http://localhost:8080/,這樣調(diào)用的時(shí)候只需寫訪問方法即可

3.使用axios

注:PUT請(qǐng)求默認(rèn)會(huì)發(fā)送兩次請(qǐng)求,第一次預(yù)檢請(qǐng)求不含參數(shù),所以后端不能對(duì)PUT請(qǐng)求地址做參數(shù)限制

首先在main.js中引入方法

import Api from './api/index.js';
Vue.prototype.$api = Api;

然后在需要的地方調(diào)用即可

this.$api.post('user/login.do(地址)', {
  "參數(shù)名": "參數(shù)值"
}, response => {
   if (response.status >= 200 && response.status < 300) {
    console.log(response.data);\\請(qǐng)求成功,response為成功信息參數(shù)
   } else {
    console.log(response.message);\\請(qǐng)求失敗,response為失敗信息
   }
});

關(guān)于“vue axios數(shù)據(jù)請(qǐng)求及vue中使用axios的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI