Vue学习之路(5)- 生命周期钩子函数配置选项触发演示

6 篇文章 0 订阅
6 篇文章 0 订阅
beforeCreate

在实例初始化之后,数据观测 (data observer) 和 event/watcher 事件配置之前被调用。

created

在实例创建完成后被立即调用。在这一步,实例已完成以下的配置:数据观测 (data observer),属性和方法的运算,watch/event 事件回调。然而,挂载阶段还没开始,$el 属性目前不可见。

beforeMount

在挂载开始之前被调用:相关的 render 函数首次被调用。该钩子在服务器端渲染期间不被调用。

mounted

el 被新创建的 vm. elrootmountedvm. e l 替 换 , 并 挂 载 到 实 例 上 去 之 后 调 用 该 钩 子 。 如 果 r o o t 实 例 挂 载 了 一 个 文 档 内 元 素 , 当 m o u n t e d 被 调 用 时 v m . el 也在文档内。注意 mounted 不会承诺所有的子组件也都一起被挂载。如果你希望等到整个视图都渲染完毕,可以用 vm.$nextTick 替换掉 mounted:该钩子在服务器端渲染期间不被调用。

mounted: function () {
  this.$nextTick(function () {
    // Code that will run only after the
    // entire view has been rendered
  })
}
beforeUpdate

数据更新时调用,发生在虚拟 DOM 打补丁之前。这里适合在更新之前访问现有的 DOM,比如手动移除已添加的事件监听器。该钩子在服务器端渲染期间不被调用,因为只有初次渲染会在服务端进行。

updated

由于数据更改导致的虚拟 DOM 重新渲染和打补丁,在这之后会调用该钩子。
当这个钩子被调用时,组件 DOM 已经更新,所以你现在可以执行依赖于 DOM 的操作。然而在大多数情况下,你应该避免在此期间更改状态。如果要相应状态改变,通常最好使用计算属性或 watcher 取而代之。

注意 updated 不会承诺所有的子组件也都一起被重绘。如果你希望等到整个视图都重绘完毕,可以用 vm.$nextTick 替换掉 updated:
该钩子在服务器端渲染期间不被调用。

updated: function () {
  this.$nextTick(function () {
    // Code that will run only after the
    // entire view has been re-rendered
  })
}
activated

keep-alive 组件激活时调用。该钩子在服务器端渲染期间不被调用。

deactivated

keep-alive 组件停用时调用。该钩子在服务器端渲染期间不被调用。

beforeDestroy

实例销毁之前调用。在这一步,实例仍然完全可用。该钩子在服务器端渲染期间不被调用。

destroyed

Vue 实例销毁后调用。调用后,Vue 实例指示的所有东西都会解绑定,所有的事件监听器会被移除,所有的子实例也会被销毁。该钩子在服务器端渲染期间不被调用。

errorCaptured

类型:(err: Error, vm: Component, info: string) => ?boolean

当捕获一个来自子孙组件的错误时被调用。此钩子会收到三个参数:错误对象、发生错误的组件实例以及一个包含错误来源信息的字符串。此钩子可以返回 false 以阻止该错误继续向上传播。

你可以在此钩子中修改组件的状态。因此在模板或渲染函数中设置其它内容的短路条件非常重要,它可以防止当一个错误被捕获时该组件进入一个无限的渲染循环。

错误传播规则
1. 默认情况下,如果全局的 config.errorHandler 被定义,所有的错误仍会发送它,因此这些错误仍然会向单一的分析服务的地方进行汇报。
1. 如果一个组件的继承或父级从属链路中存在多个 errorCaptured 钩子,则它们将会被相同的错误逐个唤起。
1. 如果此 errorCaptured 钩子自身抛出了一个错误,则这个新错误和原本被捕获的错误都会发送给全局的 config.errorHandler。
1. 一个 errorCaptured 钩子能够返回 false 以阻止错误继续向上传播。本质上是说“这个错误已经被搞定了且应该被忽略”。它会阻止其它任何会被这个错误唤起的 errorCaptured 钩子和全局的 config.errorHandler。


使用示例
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'

Vue.config.productionTip = false


/* eslint-disable no-new */
Vue.component('component-one',{
  template:'<h1>Shows Component One</h1>',
  activated: function () {
    console.log('component-one activated begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('component-one activated end')

  },
  deactivated: function () {
    console.log('component-one deactivated begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('component-one deactivated end')

  },
  beforeDestroy: function () {
    console.log('component-one beforeDestroy begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('component-one beforeDestroy end')

  },
  destroyed: function () {
    console.log('component-one destroyed begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('component-one destroyed end')

  }
})
Vue.component('component-two',{
  template:'<h1>Shows Component Two</h1>',
  activated: function () {
    console.log('component-two activated begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('component-two activated end')

  },
  deactivated: function () {
    console.log('component-two deactivated begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('component-two deactivated end')

  },
  beforeDestroy: function () {
    console.log('component-two beforeDestroy begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('component-two beforeDestroy end')

  },
  destroyed: function () {
    console.log('component-two destroyed begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('component-two destroyed end')

  },
})
new Vue({
  el:'#app',
  template:`
    <div>
      <button v-on:click="buttonClick">点我呀</button>
      <h1>{{counter}}</h1>
      <keep-alive>
        <component  :is="view"></component>
      </keep-alive>
      <component-one v-if="counter % 3 == 0"></component-one>
        <component-two v-else></component-two>
     </div>
  `,
  methods:{
    buttonClick: function () {
      this.counter += 1
      this.view = (this.view == 'component-one'?'component-two':'component-one')
    }
  },
  data:function () {
    return {
      counter:0,
      view:'component-one'
    }
  },
  beforeCreate: function () {
    console.log('beforeCreate begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('beforeCreate end')

  },
  created: function () {
    console.log('created begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('created end')

  },
  beforeMount: function () {
    console.log('beforeMount begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('beforeMount end')

  },
  mounted: function () {
    console.log('mounted begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('mounted end')

  },
  beforeUpdate: function () {
    console.log('beforeUpdate begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('beforeUpdate end')

  },
  updated: function () {

    console.log('updated begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('updated end')

  },

  errorCaptured: function () {

    console.log('errorCaptured begin')
    console.log(this.$data.counter)
    console.log(this.$el)
    console.log('errorCaptured end')

  }
})


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值