1. 程式人生 > >vue中mouted與methods中方法互相呼叫,以及vue中使用setInterval呼叫methods中方法

vue中mouted與methods中方法互相呼叫,以及vue中使用setInterval呼叫methods中方法

剛學習vue不久,下午做vue輪播小元件時遇到了mouted與methods中方法互相呼叫的問題.

mouted呼叫methods中方法

 mounted: function() {
     this.up();
  }

在mouted中使用setInterval呼叫methods中方法

mounted() {
            this.up();
            setInterval(this.up, 1000);
        },

1.在mounted中先呼叫this.up方法

2.然後在setInterval()中的第一個引數,呼叫方法不加括號,第二個引數是時間。

methods呼叫mouted中方法(清除定時器,其他方法同理)

data:{
    return {
                auto:'',
            }
      },
methods:{
    clearInterval(){
           clearInterval(this.auto)
           }
     },
mounted() {
            this.up();
            var that = this;
            that.auto = setInterval(this.up, 1000);
        },

1.在data中定義一個值auto.

2.mounted中的方法使用that定義.

3.在methods中的的方法中使用this呼叫不加括號.