91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue父組件數據更新子組件相關內容未改變問題怎么解決

發布時間:2022-03-25 15:53:47 來源:億速云 閱讀:730 作者:iii 欄目:開發技術

這篇文章主要介紹“vue父組件數據更新子組件相關內容未改變問題怎么解決”,在日常操作中,相信很多人在vue父組件數據更新子組件相關內容未改變問題怎么解決問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”vue父組件數據更新子組件相關內容未改變問題怎么解決”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

父組件數據更新子組件相關內容未改變

父組件

在父組件中,根據后臺給的數據(數組),v-for生成子組件

   <div class="exist">            
        <existProject :itemprop="item" v-for="(item, index) in getData" :key="index" :index="index" @click="sendIdTogetData(index)" v-show="true"></existProject>
    </div>

子組件(existProject)

<template>
 <!-- <transition name="el-zoom-in-center"> -->
  <div class="existProjectBox" v-show="show2">
      <div class="existContentBox">
          <div class="existContent">
              <div class="existTitle">{{itemprop.title}}</div>
              <div class="stateBox">
                  <span class="state">{{ status_tit }}</span>
                  <span class="number" v-if="itemprop.status==2">收集份數:{{itemprop.asyncCount}}份</span>
              </div>
              <div class="tiemBox">
                  {{createtime}}
              </div>
          </div>
      </div>
      <div class="existButton">
        <li v-if="itemprop.status==0" @click="turnEdit(itemprop.qid)">
            <i class="icon icon-edit"></i>
            <span>編輯</span>
        </li>
        <li v-if="itemprop.status==0" @click="turnSend(itemprop.qid)">
            <i class="icon icon-send"></i>
            <span>發布</span>
        </li>
        <li v-if="itemprop.status==2 ">
            <i class="icon icon-data"></i>
            <span>數據</span>
        </li>
        <!-- <li v-if="itemprop.status==2 ">
            <i class="icon icon-data"></i>
            <span>暫停</span>
        </li>
        <li v-if="itemprop.status==2 ">
            <i class="icon icon-data"></i>
            <span>終止</span>
        </li> -->
        <li @click="delItem(itemprop.qid)">
            <i class="icon icon-other"></i>
            <span>刪除</span>
        </li>
      </div>
  </div>
 <!-- </transition> -->
</template>
<script>
import axios from 'axios'
export default {
    data(){w
        return{
            createtime:'',
            status_tit:'',
            show2:true
        }
    },
    props:['itemprop'],
    methods:{
        turnEdit(id){
            debugger;
            console.log(id)
            axios.defaults.headers.common['token'] = JSON.parse(window.localStorage.getItem('token'))
            axios.get('/question/'+id)
            .then(response => {
                console.log(response);
                var obj = response.data.data;
                var contents = obj.contents;
                for(let i = 0; i < contents.length; i++){
                    obj.contents[i].component = this.$options.methods.initType(obj.contents[i].type)
                }
                console.log(obj)
                window.localStorage.setItem('workInfoList', JSON.stringify(obj));
                this.$router.push({
                    path: '/edit',
                    query: {
                        id: id
                    }
                })
                window.location.reload()
            })
            .catch(error => {
                console.log(error)
            })
        },
        turnSend(id){
            debugger;
            console.log(id)
            axios.defaults.headers.common['token'] = JSON.parse(window.localStorage.getItem('token'))
            axios.get('/question/'+id)
            .then(response => {
                console.log(response);
                var obj = response.data.data;
                console.log(obj)
                window.localStorage.setItem('workInfoList', JSON.stringify(obj));
                this.$router.push({
                    path: '/sendProject',
                    query: {
                        id: id
                    }
                })
                window.location.reload()
            })
            .catch(error => {
                console.log(error)
            })
        },
        delItem(id){
          this.$confirm('此操作將刪除該文件進入草稿箱, 是否繼續?', '提示', {
            confirmButtonText: '確定',
            cancelButtonText: '取消',
            type: 'warning'
          })
          .then(() => {
            
            axios.defaults.headers.common['token'] = JSON.parse(window.localStorage.getItem('token'))
            axios.delete('/question/'+id)
              .then(response => {
                console.log(response)
                // this.show2 = false
                this.$parent.getPage();
              })
          })
          .catch(error => {
              console.log(error)
          })
        },
        initType(str){
          switch(str){
              case 1:return 'Radio';
              case 2:return 'check';
              case 3:return 'gapFill';
              case 4:return 'level';
              case 5:return 'photoInput';
              case 6:return 'Rate';
              case 7:return 'remark';
              case 8:return 'selectChoice';
              case 9:return 'sort';
              case 10:return 'tableNumber';
              case 11:return 'temp';
          }
        },        
    },
    mounted(){
        // console.log(this.itemprop.createTime)
        var transformTime = new Date(this.itemprop.createTime)
        this.createtime = transformTime.toLocaleString();
        console.log(this.createtime)
    },
}
</script>

因為有多條數據,所以有分頁處理,在第一頁中數據顯示正常,但是在獲得第二頁數據并賦值給父組件的data后,子組件的信息保留的還是第一頁的信息

解決方法,使用watch深度監聽

    watch:{
        itemprop:{
            handler(n,o){ 
                console.log(this.itemprop);
                var status = this.itemprop.status;
                var showCondition = this.itemprop.showCondition;
                // debugger;
                this.status_tit = (function(status,showCondition) {
                    if(status==0) {
                        
                        return '未發布';
                    }
                    if(status==2 && showCondition==1)
                    {
                        // 已發布
                        return  '收集中';
                    }
                    if(status==2 &&showCondition==0)
                    {
                        // 暫停
                        return '已暫停';
                    }
                    if(status==2 &&showCondition==-1) {
                        // 終止
                        return '已終止';
                    }
                    if(status==2 &&showCondition==2) {
                        // 問卷發布結束
                        return '已結束';
                    }
                })(status,showCondition)
            },
            deep:true,
            immediate:true,
        }
    }

watch可以監聽子組件的數據變化,數組或者對象要用深度監聽,字符串什么的不用深度監聽,這樣就可以在分頁切換數據后,就不會保留原有的信息,而是新的信息了

循環中子組件不更新問題

解決方法

這是Element-UI的一個bug,解決方案是從el-table中增加一個row-key屬性,并為row-key設置一個能唯一標識的字段名。

1.這個可以是數據庫的id字段

<el-table row-key="_id" ></el-table>

2.給table增加一個隨機數的key

<el-table :key="Math.random()" ></el-table>

到此,關于“vue父組件數據更新子組件相關內容未改變問題怎么解決”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

安图县| 富蕴县| 鹿泉市| 吴堡县| 岳普湖县| 芦山县| 建湖县| 齐河县| 那坡县| 中西区| 天柱县| 千阳县| 浪卡子县| 马关县| 南澳县| 白玉县| 石城县| 随州市| 剑川县| 眉山市| 周宁县| 南开区| 微山县| 加查县| 宁安市| 林西县| 上蔡县| 新民市| 卫辉市| 米脂县| 兴海县| 垦利县| 拉萨市| 治多县| 土默特右旗| 赫章县| 巴中市| 宜昌市| 葫芦岛市| 荆门市| 固阳县|