不积跬步,无以至千里;不积小流,无以成江海。

 

Vuejs语言基础

 

vue生命周期:

Vue实例从创建、运行、到销毁期间,总是伴随着各种各样的事件,这些事件,统称为生命周期。

生命周期钩子 = 生命周期函数 = 生命周期事件

 

创建期间的生命周期函数:

1. beforeCreate:实例刚在内存中被创建出来,此时,还没有初始化好 data 和 methods 属性
2. created:实例已经在内存中创建OK,此时 data 和 methods 已经创建OK,此时还没有开始 编译模板
3. beforeMount:此时已经完成了模板的编译,但是还没有挂载到页面中
4. mounted:此时,已经将编译好的模板,挂载到了页面指定的容器中显示

运行期间的生命周期函数:

1. beforeUpdate:状态更新之前执行此函数, 此时 data 中的状态值是最新的,但是界面上显示的 数据还是旧的,因为此时还没有开始重新渲染DOM节点
2. updated:实例更新完毕之后调用此函数,此时 data 中的状态值 和 界面上显示的数据,都已经完成了更新,界面已经被重新渲染好了!

销毁期间的生命周期函数:

1. beforeDestroy:实例销毁之前调用。在这一步,实例仍然完全可用。
2. destroyed:Vue 实例销毁后调用。调用后,Vue 实例指示的所有东西都会解绑定,所有的事件监听器会被移除,所有的子实例也会被销毁。

 

举例:

<div id = "app">
  <h2>{{message}}</h2>
</div>

<script src="../js/vue.js"></script>
<script>
  const app = new Vue({
    el:'#app',
    data:{
      message:'Hello vuejs!',
    },
    beforeCreate: function() {
      console.group('---beforeCreate创建前状态---');
      console.log("%c%s", "color:red" , "el     : " + this.$el); //undefined
      console.log("%c%s", "color:red","data   : " + this.$data); //undefined
      console.log("%c%s", "color:red","message: " + this.message)
    },
    created: function() {
      console.group('---created创建完毕状态---');
      console.log("%c%s", "color:red","el     : " + this.$el); //undefined
      console.log("%c%s", "color:red","data   : " + this.$data); //已被初始化
      console.log("%c%s", "color:red","message: " + this.message); //已被初始化
    },
    beforeMount: function() {
      console.group('---beforeMount挂载前状态---');
      console.log("%c%s", "color:red","el     : " + (this.$el)); //已被初始化
      console.log(this.$el);
      console.log("%c%s", "color:red","data   : " + this.$data); //已被初始化
      console.log("%c%s", "color:red","message: " + this.message); //已被初始化
    },
    mounted: function() {
      console.group('---mounted 挂载结束状态---');
      console.log("%c%s", "color:red","el     : " + this.$el); //已被初始化
      console.log(this.$el);
      console.log("%c%s", "color:red","data   : " + this.$data); //已被初始化
      console.log("%c%s", "color:red","message: " + this.message); //已被初始化
    },
    beforeUpdate: function () {
      console.group('beforeUpdate 更新前状态=====》');
      console.log("%c%s", "color:red","el     : " + this.$el);
      console.log(this.$el);
      console.log("%c%s", "color:red","data   : " + this.$data);
      console.log("%c%s", "color:red","message: " + this.message);
    },
    updated: function () {
      console.group('updated 更新完成状态=====》');
      console.log("%c%s", "color:red","el     : " + this.$el);
      console.log(this.$el);
      console.log("%c%s", "color:red","data   : " + this.$data);
      console.log("%c%s", "color:red","message: " + this.message);
    },
    beforeDestroy: function () {
      console.group('beforeDestroy 销毁前状态=====》');
      console.log("%c%s", "color:red","el     : " + this.$el);
      console.log(this.$el);
      console.log("%c%s", "color:red","data   : " + this.$data);
      console.log("%c%s", "color:red","message: " + this.message);
    },
    destroyed: function () {
      console.group('destroyed 销毁完成状态=====》');
      console.log("%c%s", "color:red","el     : " + this.$el);
      console.log(this.$el);
      console.log("%c%s", "color:red","data   : " + this.$data);
      console.log("%c%s", "color:red","message: " + this.message)
    }
  })
</script>

 控制台输出:

---beforeCreate创建前状态---
el     : undefined
data   : undefined
message: undefined
---created创建完毕状态---
el     : undefined
data   : [object Object]
message: Hello vuejs!
---beforeMount挂载前状态---
el     : [object HTMLDivElement]
<div id="app">
  <h2>{{message}}</h2>
</div>
data   : [object Object]
message: Hello vuejs!
---mounted 挂载结束状态---
el     : [object HTMLDivElement]
<div id="app">
  <h2>Hello vuejs!</h2>
</div>
data   : [object Object]
message: Hello vuejs!

 在控制台输入:

app.message = '触发组件更新'

 控制台输出:

beforeUpdate 更新前状态=====》
el     : [object HTMLDivElement]
<div id="app">
  <h2>触发组件更新</h2>
</div>
data   : [object Object]
message: 触发组件更新
updated 更新完成状态=====》
el     : [object HTMLDivElement]
<div id="app">
  <h2>触发组件更新</h2>
</div>
data   : [object Object]
message: 触发组件更新