溫馨提示×

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

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

vue如何利用axios來(lái)完成數(shù)據(jù)的交互

發(fā)布時(shí)間:2021-06-17 15:14:43 來(lái)源:億速云 閱讀:141 作者:小新 欄目:web開(kāi)發(fā)

這篇文章主要為大家展示了“vue如何利用axios來(lái)完成數(shù)據(jù)的交互”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“vue如何利用axios來(lái)完成數(shù)據(jù)的交互”這篇文章吧。

axios基于 Promise 的 HTTP 請(qǐng)求客戶端,可同時(shí)在瀏覽器和 node.js 中使用

現(xiàn)在Vue官方推薦的網(wǎng)絡(luò)通信庫(kù)不再是vue-resource了,推薦使用axios。所以學(xué)習(xí)了下,總結(jié)如下。

一、功能特性

1、在瀏覽器中發(fā)送 XMLHttpRequests 請(qǐng)求
2、在 node.js 中發(fā)送 http請(qǐng)求
3、支持 Promise API
4、攔截請(qǐng)求和響應(yīng)
5、轉(zhuǎn)換請(qǐng)求和響應(yīng)數(shù)據(jù)
6、自動(dòng)轉(zhuǎn)換 JSON 數(shù)據(jù)
7、客戶端支持保護(hù)安全免受 XSRF 攻擊

二、axios的安裝方法(官方給了3種方法)

1、npm安裝

$ npm install axios

2、bower安裝

$ bower install axios

3、直接使用cdn

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

三、安裝步驟

這里我使用npm的方法步驟:

①首先在npm中輸入npm install axios

②在main.js加上配置

import axios from ‘a(chǎn)xios' 
Vue.prototype.$http = axios

vue如何利用axios來(lái)完成數(shù)據(jù)的交互

四、請(qǐng)求實(shí)例

點(diǎn)擊獲取數(shù)據(jù)可以取到想要的數(shù)據(jù)

<template>
 <div class="tabbar">
  <p>首頁(yè)</p>
  <button v-on:click = 'goback'>獲取數(shù)據(jù)</button>
  <div class="new_wrap" v-for="items in item">
   <div class="newcard">
    <div>
      <p>{{items.issuer_nickname}}.</p>
    </div>
    <div>
      {{items.title}}
    </div>
    <div class="pic">
      <img :src="items.cover">
    </div> 
   </div>
   <br>
   </div>
 </div>
</template>
<script>
export default {
 name: 'tabbar',
 data () {
  return {
   msg: 'Welcome to Your Vue.js App',
   item: []
  }
 },
 methods:{
  goback:function(){
   console.log('hah');
   this.$http.get('url') //把url地址換成你的接口地址即可
    .then(res => {
     //this.request.response = res.data
     this.item = res.data.data.item; //把取item的數(shù)據(jù)賦給 item: []中
     console.log(res.data.data.item);
     if (res.data.code == '0') {
      console.log('haha');
     }else{
      alert('數(shù)據(jù)不存在');
     }
    })
    .catch(err => {
     alert('請(qǐng)求失敗');
    })
  }
 }
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
*{margin: 0;padding: 0;}
@function torem($px){//$px為需要轉(zhuǎn)換的字號(hào)
  @return $px / 100px * 1rem; //100px為根字體大小
}
ul{
 width: 100%;
 position: absolute;
 bottom: 0;
 li{
  width: torem(187.5px);
  float:left;
  height: torem(98px);
  text-align:center;
  background: #ccc;
  }
}
img{
   width: torem(200px);
   height: torem(200px);
  }
</style>

效果圖:

vue如何利用axios來(lái)完成數(shù)據(jù)的交互

以上是“vue如何利用axios來(lái)完成數(shù)據(jù)的交互”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(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