当前位置:   article > 正文

uni-app 组件的创建和使用和组件的生命周期函数(参考B站黑马程序员杭州)_uniapp 组件初始化函数

uniapp 组件初始化函数
创建.vue文件
import方式导入
components进行注册

test.vue

<template>
	<view id="myView">
		这是test组件{{num}}
	</view>
</template>

<script>
	export default {
		name:"test",
		data() {
			return {
				num: 3,
				intId: null
			};
		},
		// 实例初始化,但是此时数据并没有初始化
     	beforeCreate(){
		 console.log("实例已经初始化了")
		 console.log(this.num)
		 
	    },
		// 此时数据初始化,通常在这里面显示一些数据,初始化数据在这里面
		created(){
		 console.log('created',this.num)
		 // 设置一个定时器,时间为一秒
		 this.intId= setInterval(()=>{
			 console.log('执行定时器')
		 },1000)
		},
		beforeMount() {
		 console.log('beforemount',document.getElementById('myView'))
		},
		// 操作Dom元素,推荐在这里面操作
		// 挂在需要id,根据id获取Dom元素
		mounted() {
		 console.log('beforemount',document.getElementById('myView'))
		},
		destroyed() {
			console.log("组件销毁了")
			// 通过变量销毁定时器
			clearInterval(this.intId)
		}
	}
</script>

<style>

</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49

index.vue

<template>
	<view class="content">
		<!-- v-if 来判断显示还是不显示 -->
		<test v-if="flag"></test>
		<button type="primary" @click="checkTest">切换方法</button>
	</view>
</template>

<script>
	import test from '../../components/test.vue'
	export default {
		data() {
			return {
				title: 'Hello',
				flag: true
			}
		},
		onLoad(options) {
			console.log("页面加载了",options)
		},
		onShow(){
			console.log('页面显示了')
		},
		onReady(){
			console.log('页面初次渲染完成了')
		},
		onHide(){
			console.log("页面隐藏了")
			
		},
		methods: {
			checkTest(){
				this.flag= !this.flag;
			}
		},
		// 注册组件
		components:{
			test
		}
	}
</script>

<style>
	.content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.logo {
		height: 200rpx;
		width: 200rpx;
		margin-top: 200rpx;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 50rpx;
	}

	.text-area {
		display: flex;
		justify-content: center;
	}

	.title {
		font-size: 36rpx;
		color: #8f8f94;
	}
</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/671955
推荐阅读