簡體   English   中英

Vue 數據在 setInterval() 方法中更新,但 dom/view 不更新

[英]Vue data updates in method with setInterval() but the dom/view doesn't update

在我的方法中,我有一個 function ,它是使用視圖中的 @click 觸發的。 此函數啟動一個計時器,計時器的工作原理與我在 DevTools 中看到的一樣,但它僅在我點擊刷新時在 DevTools 中更新。

同樣在視圖中,計時器根本沒有顯示,因為它只呈現一次並且它不尋找更新。

更新:根據要求提供完整代碼

<template>
<div class="container-fluid">
    <div class="card mt-2 p-3 w-75 mx-auto">
        <h2>League Summoners Timers</h2>
        <hr>
        <div>
            <h5>Enemy team</h5>
            <div class="row">
                <div class="col-md-12 col-lg-2" v-for="index in lanes" :key="index">
                    <div class="card">
                        <div class="card-header">
                            <p class="m-0">{{ index }}</p>
                        </div>
                        <div class="card-body">
                            <div v-show="!gameStarted">
                                <div v-show="selected[index.toLowerCase()].length < 2" class="spell-image-row" v-for="spell in spells" :key="spell.name" @click="onClickSelection(spell, index)">
                                    <img class="spell-image m-1" :alt="spell.name" :src="spell.image">
                                </div>
                                <div v-show="selected[index.toLowerCase()].length >= 2">
                                    <span class="alert alert-primary">Spells selected</span>
                                    <ul class="mt-3">
                                        <li v-for="selectedSpell in selected[index.toLowerCase()]" :key="selectedSpell">
                                            {{ selectedSpell }}
                                        </li>
                                    </ul>
                                </div>
                            </div>
                            <div v-show="gameStarted">
                                <div v-for="spell in selected[index.toLowerCase()]" :key="index+spell">
                                    <div class="row">
                                        <img style="float: left" class="my-1" :src="spells[spell.toLowerCase()].image" :alt="spell.name" @click="onClickStartTimer(spell, index)">
                                        <p>{{ timers[index.toLowerCase()][spell.toLowerCase()] }}</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div class="mt-3">
            <button class="btn btn-primary mr-3" @click="gameStarted = true" v-show="checkSelected() && !gameStarted">Start game</button>
            <button class="btn btn-danger" onClick="window.location.reload();">Reset</button>
        </div>
    </div>
</div>

<script>
    export default {
        name: "LeagueTimers",
        data() {
            return {
                gameStarted: false,
                lanes: ['Top', 'Jungle', 'Mid', 'ADC', 'Support'],
                spells: {
                    teleport: {
                        name: 'Teleport',
                        image: require('../assets/images/Teleport.png'),
                        cooldown: 420,
                    },
                    ignite: {
                        name: 'Ignite',
                        image: require('../assets/images/Ignite.png'),
                        cooldown: 180,
                    },
                    heal: {
                        name: 'Heal',
                        image: require('../assets/images/Heal.png'),
                        cooldown: 240,
                    },
                    ghost: {
                        name: 'Ghost',
                        image: require('../assets/images/Ghost.png'),
                        cooldown: 300,
                    },
                    flash: {
                        name: 'Flash',
                        image: require('../assets/images/Flash.png'),
                        cooldown: 300,
                    },
                    exhaust: {
                        name: 'Exhaust',
                        image: require('../assets/images/Exhaust.png'),
                        cooldown: 210,
                    },
                    cleanse: {
                        name: 'Cleanse',
                        image: require('../assets/images/Cleanse.png'),
                        cooldown: 210,
                    },
                    barrier: {
                        name: 'Barrier',
                        image: require('../assets/images/Barrier.png'),
                        cooldown: 180,
                    },
                    smite: {
                        name: 'Smite',
                        image: require('../assets/images/Smite.png'),
                        cooldown: 15,
                    },
                },
                selected: {
                    top: [],
                    jungle: [],
                    mid: [],
                    adc: [],
                    support: [],
                },
                timers: {
                    top: {},
                    jungle: {},
                    mid: {},
                    adc: {},
                    support: {},
                },
            }
        },
        methods: {
            onClickSelection(spell, lane) {
                this.selected[lane.toLowerCase()].push(spell.name);

            },
            onClickStartTimer(spell, lane) {
                if (!this.timers[lane.toLowerCase()][spell.toLowerCase()]) {
                    this.startTimer(spell.toLowerCase(), lane.toLowerCase(), this.spells[spell.toLowerCase()].cooldown);
                } else {
                    console.log('runt al');
                }
            },
            checkSelected() {
                for (let [key] of Object.entries(this.selected)) {
                    if (this.selected[key].length !== 2) {
                        return false;
                    }
                }
                return true;
            },
            startTimer(spell, lane, cooldown) {
                this.timers[lane][spell] = cooldown;
                let timers = this.timers;
                setInterval(function (){
                    timers[lane][spell]--;
                    // console.log(lane+spell + " - " + timers[lane][spell]);
                    // console.log(typeof timers[lane][spell])
                    this.$forceUpdate();
                }, 1000);
            },
        },
    }
</script>

到目前為止,我嘗試的是使用 watch: {} 和 computed: {} 但到目前為止沒有任何效果。 我必須補充一點,我對 Vue 很陌生。

嘗試以這種方式聲明您的 setInterval function

 setInterval(() => {
    this.timers[lane][spell]--;
    console.log(lane+spell + " - " + timers[lane][spell]);
    console.log(typeof timers[lane][spell])
    // this.$forceUpdate();
  }, 1000);

使用箭頭 function,您可以使用 this.timers 訪問屬性數據。 使用 Function 語法會創建一個新的 scope,this.timers 不可用

如果要使用 function 語法,可以通過這種方式綁定 this object

  setInterval(function () {
    this.timers[lane][spell]--;
    console.log(lane+spell + " - " + timers[lane][spell]);
    console.log(typeof timers[lane][spell])
  }.bind(this), 1000)

此外,要向數據屬性計時器內的對象添加反應性,您必須首先聲明它們:

timers:
  { top:
    { teleport: 0,
      smite: 0, 
      ... },
    ...
   }

如果你想動態添加這些屬性,vue set 屬性就是這樣做的方法,你可以在這里閱讀更多關於它https://v2.vuejs.org/v2/guide/reactivity.html#Change-Detection-Caveats

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM