真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

vue解決異步數(shù)據(jù)更新問題

問題

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序定制開發(fā)、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了雙河免費建站歡迎大家使用!

記錄一下出現(xiàn)的問題, 數(shù)據(jù)翻倍

這是復(fù)現(xiàn)問題的代碼

data() {
  return {
   space: "",
   allresult: []
  };
 },
 methods: {
  getmessage() {
   this.allresult = [];
   axios
    .get(
     "https://gist.githubusercontent.com/xiaolannuoyi/9b0defe4959e71fa97e6096cc4f82ba4/raw/4be939123d488cee7ecefc055fb5ecb2ed8d5c8d/test"
    )
    .then(data => {
     console.log(data);
     let result = data.data;
     for (let i = 0; i < result.length; i++) {
      //原因在于這里的this.Allresult
      this.allresult.push({
       id: result[i].id,
       name: result[i].name,
       age: result[i].age
      });
      
     }
      console.log('此時的this.allresult',this.allresult);
    });
  }
 },
 watch: {
  space() {
   console.log("watch");
   this.getmessage();
  }
 },
 mounted() {
  this.space = "123";
  console.log("mounted");
  this.getmessage();
 }

結(jié)果

vue 解決異步數(shù)據(jù)更新問題

此時你可以看到第二次的數(shù)據(jù)時 是 第一次的 2倍

原因

mounted 和 watch 都執(zhí)行 getmessage 方法,雖然方法之前 對數(shù)據(jù)進行了清空,但是 異步請求執(zhí)行的慢,

所以兩次調(diào)用getmessage相當于 this.allresult = []; this.allresult = []; axios...;axios....: 這個順序

所以才會出現(xiàn)上述現(xiàn)象

解決

1.修改this.allresult = []的位置

vue 解決異步數(shù)據(jù)更新問題

2.新建一個臨時空數(shù)組

vue 解決異步數(shù)據(jù)更新問題

以上這篇vue 解決異步數(shù)據(jù)更新問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持創(chuàng)新互聯(lián)。


文章名稱:vue解決異步數(shù)據(jù)更新問題
轉(zhuǎn)載來于:http://weahome.cn/article/ighsdo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部