Vue学习笔记3.2-生命周期函数 beforeCreate、created、beforeMount、Mounted、beforeUpdate、updated、beforeDestroy、destro

本文主要是介绍Vue学习笔记3.2-生命周期函数 beforeCreate、created、beforeMount、Mounted、beforeUpdate、updated、beforeDestroy、destro,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Vue生命周期函数有beforeCreate、created、beforeMount、Mounted、beforeUpdate、updated、beforeDestroy、destroyed、activated、deactivated、errorCaptured。共11个。本文直说前8个,另外3个以后再说

 

首先要说明下 什么是生命周期函数:

生命周期函数就是指在某一个特定时间节点会自动执行的函数。

1. beforeCreate:

beforeCreate是在Vue实例初始化事件后执行的。

<!DOCTYPE html>
<html>
<head><title>生命周期函数</title><script src="vue.js"></script>
</head>
<body><div id="app">Hello World</div>
</body>
<script type="text/javascript">var vm = new Vue({el: "#app",beforeCreate: function() {console.log('beforeCreate');}})
</script>
</html>

2.created: 在Vue实例完成了内部代码和外部代码的初始化之后执行 

<script type="text/javascript">var vm = new Vue({el: "#app",beforeCreate: function() {console.log('beforeCreate');},created: function() {console.log('created');}})
</script>

3.当实例初始化事件代码后开始检测是否有‘el’参数。如果有则继续检测是否有'template'参数,如果没有‘el’参数。就坐等vm.$mount(el)执行。

4.检测是否有“template”参数 如果有就使用template中的模板。如果没有,就把挂载点作为模板使用,也就是上面实例的<div id="app">HelloWorld</div>

<!DOCTYPE html>
<html>
<head><title>生命周期函数</title><script src="vue.js"></script>
</head>
<body><div id="app"></div>
</body>
<script type="text/javascript">var vm = new Vue({el: "#app",template: "<div>HelloWorld</div>",beforeCreate: function() {console.log('beforeCreate');},created: function() {console.log('created');}})
</script>
</html>

5.在将模板渲染到显示页面上之前会执行beforeMount:

<script type="text/javascript">var vm = new Vue({el: "#app",template: "<div>HelloWorld</div>",beforeCreate: function() {console.log('beforeCreate');},created: function() {console.log('created');},beforeMount: function() {console.log('beforeMount');}})
</script>

6.mounted:

在模板渲染到前端页面之后执行mounted

可以来做一个试验 

<body><div id="app"></div>
</body>
<script type="text/javascript">var vm = new Vue({el: "#app",template: "<div>HelloWorld</div>",beforeCreate: function() {console.log('beforeCreate');},created: function() {console.log('created');},beforeMount: function() {console.log(this.$el);},mounted: function(){console.log(this.$el);}})
</script>

7.beforeDestroy和destroyed

beforeDestroy在Vue实例的生命周期结束前执行

destroyed在Vue实例的生命周期结束后执行。

这两个函数一般不会自动运行。需要通过执行vm.$destroy()时才会执行(类似C++ 的释放堆空间操作)

<script type="text/javascript">var vm = new Vue({el: "#app",template: "<div>HelloWorld</div>",beforeCreate: function() {console.log('beforeCreate');},created: function() {console.log('created');},beforeMount: function() {console.log(this.$el);},mounted: function(){console.log(this.$el);},beforeDestroy: function() {console.log('beforeDestroy');},destroyed: function() {console.log('destroyed');}})
</script>

8.beforeUpdate和updated:

beforeUpdate是在数据改变之前执行。

updated实在数据改变后执行。

<script type="text/javascript">var vm = new Vue({el: "#app",data: {content: 'helloworld'},template: "<div>{{content}}</div>",beforeCreate: function() {console.log('beforeCreate');},created: function() {console.log('created');},beforeMount: function() {console.log(this.$el);},mounted: function(){console.log(this.$el);},beforeDestroy: function() {console.log('beforeDestroy');},destroyed: function() {console.log('destroyed');},beforeUpdate: function() {console.log('beforeUpdate');},updated: function() {console.log('updated');}})
</script>

这篇关于Vue学习笔记3.2-生命周期函数 beforeCreate、created、beforeMount、Mounted、beforeUpdate、updated、beforeDestroy、destro的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/639720

相关文章

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

VUE动态绑定class类的三种常用方式及适用场景详解

《VUE动态绑定class类的三种常用方式及适用场景详解》文章介绍了在实际开发中动态绑定class的三种常见情况及其解决方案,包括根据不同的返回值渲染不同的class样式、给模块添加基础样式以及根据设... 目录前言1.动态选择class样式(对象添加:情景一)2.动态添加一个class样式(字符串添加:情

React实现原生APP切换效果

《React实现原生APP切换效果》最近需要使用Hybrid的方式开发一个APP,交互和原生APP相似并且需要IM通信,本文给大家介绍了使用React实现原生APP切换效果,文中通过代码示例讲解的非常... 目录背景需求概览技术栈实现步骤根据 react-router-dom 文档配置好路由添加过渡动画使用

使用Python实现生命之轮Wheel of life效果

《使用Python实现生命之轮Wheeloflife效果》生命之轮Wheeloflife这一概念最初由SuccessMotivation®Institute,Inc.的创始人PaulJ.Meyer... 最近看一个生命之轮的视频,让我们珍惜时间,因为一生是有限的。使用python创建生命倒计时图表,珍惜时间

使用Vue.js报错:ReferenceError: “Vue is not defined“ 的原因与解决方案

《使用Vue.js报错:ReferenceError:“Vueisnotdefined“的原因与解决方案》在前端开发中,ReferenceError:Vueisnotdefined是一个常见... 目录一、错误描述二、错误成因分析三、解决方案1. 检查 vue.js 的引入方式2. 验证 npm 安装3.

vue如何监听对象或者数组某个属性的变化详解

《vue如何监听对象或者数组某个属性的变化详解》这篇文章主要给大家介绍了关于vue如何监听对象或者数组某个属性的变化,在Vue.js中可以通过watch监听属性变化并动态修改其他属性的值,watch通... 目录前言用watch监听深度监听使用计算属性watch和计算属性的区别在vue 3中使用watchE

python解析HTML并提取span标签中的文本

《python解析HTML并提取span标签中的文本》在网页开发和数据抓取过程中,我们经常需要从HTML页面中提取信息,尤其是span元素中的文本,span标签是一个行内元素,通常用于包装一小段文本或... 目录一、安装相关依赖二、html 页面结构三、使用 BeautifulSoup javascript

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

Ilya-AI分享的他在OpenAI学习到的15个提示工程技巧

Ilya(不是本人,claude AI)在社交媒体上分享了他在OpenAI学习到的15个Prompt撰写技巧。 以下是详细的内容: 提示精确化:在编写提示时,力求表达清晰准确。清楚地阐述任务需求和概念定义至关重要。例:不用"分析文本",而用"判断这段话的情感倾向:积极、消极还是中性"。 快速迭代:善于快速连续调整提示。熟练的提示工程师能够灵活地进行多轮优化。例:从"总结文章"到"用