Vue从入门到实战:杂项

来自CloudWiki
Cloud17讨论 | 贡献2021年2月18日 (四) 14:38的版本
跳转至: 导航搜索

组件通信的其他方式

前面介绍的组件通信的三种方式:

  • 父组件通过prop向子组件传递数据
  • 子组件通过自定义事件向父组件发起通知或进行数据传递
  • 子组件通过<slot>元素充当占位符,获取父组件分发的内容,也可以在子组件的<slot>元素上使用v-bind指令绑定一个插槽prop,向父组件提供数据。

除此之外,还有其他实现方式

访问根实例

在每一个new Vue实例的子组件中,都可以通过$root属性来访问根实例。

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script src="vue.js"></script>
	</head>
	<body>
		<div id="app">
			<parent></parent>
		</div>
	
		<script>
			Vue.component('parent', {
				template: '<child></child>'
			});
			Vue.component('child', {
			 	methods: {
			 		accessRoot(){
			 			console.log("单价:" + this.$root.price);
			 			console.log("总价:" + this.$root.totalPrice);
			 			console.log(this.$root.hello());
			 		}
			 	},
				template: '<button @click="accessRoot">访问根实例</button>'
			})

			new Vue({
			  el: '#app',
			  data: {
			  	price: 98
			  },
			  computed: {
			  	totalPrice(){
			  		return this.price * 10;
			  	}
			  },
			  methods: {
			  	hello(){
			  		return "Hello, Vue.js无难事";
			  	}
			  }
			})
		</script>
	</body>
</html>

不管组件是根实例的子组件,还是更深层级的后代组件,$root属性总是代表了根实例。

访问父组件实例

和$root类似,$parent属性用于在一个子组件访问父组件的实例。这可以替代父组件将数据以 prop 的方式传入子组件的方式。

在绝大多数情况下,触达父级组件会使得你的应用更难调试和理解,尤其是当你变更了父级组件的数据的时候。当我们稍后回看那个组件的时候,很难找出那个变更是从哪里发起的。
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script src="vue.js"></script>
	</head>
	<body>
		<div id="app">
			<parent></parent>
		</div>
	
		<script>
			Vue.component('parent', {
				data(){
					return {
						price: 98
					}
			  },
			  computed: {
			  	totalPrice(){
			  		return this.price * 10;
			  	}
			  },
			  methods: {
			  	hello(){
			  		return "Hello, Vue.js无难事";
			  	}
			  },
				template: '<child></child>',
			});
			Vue.component('child', {
			 	methods: {
					accessParent(){
						console.log("单价:" + this.$parent.price);
						console.log("总价:" + this.$parent.totalPrice);
						console.log(this.$parent.hello());
					}
				},
				template: '<button @click="accessParent">访问父组件实例</button>'
			})

			new Vue({
			  el: '#app',
			  
			})
		</script>
	</body>
</html>

访问子组件实例或子元素

在Vue.js中,父组件要访问子组件实例或子元素,可以给子组件或子元素添加一个特殊的属性ref, 为子组件或子元素分配一个引用ID ,然后父组件就可以通过$ref属性来访问子组件实例或子元素。

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script src="vue.js"></script>
	</head>
	<body>
		<div id="app">
			<parent></parent>
		</div>
	
		<script>
			Vue.component('parent', {
			  mounted(){
			  	// 访问子元素<input>,让其具有焦点
			  	this.$refs.inputElement.focus();
			  	// 访问子组件<child>的message数据属性
			  	console.log(this.$refs.childComponent.message)
			  },
				template: `
					<div>
						<input ref="inputElement"><br> <!--子元素-->
						<child ref="childComponent"></child> <!-- 子组件-->
					</div>`
			});
			Vue.component('child', {
			 	data(){
			 		return {
			 			message: 'Vue.js无难事'
			 		}
			 	},
				template: '<p>{{message}}</p>'
			})

			new Vue({
			  el: '#app',
			  
			})
		</script>
	</body>
</html>

要注意,$ref属性只在组件渲染完成之后生效,并且他们不是响应式的。要避免在模板和计算属性中访问$refs 。

依赖注入

$root属性用于访问根实例,$parent属性用于访问父组件实例,但如果组件嵌套的层级不确定,某个组件的数据或方法需要被后代组件所访问,又该如何实现呢 ?

这时需要用到两个新的实例选项:provide和inject .provide选项允许我们指定要提供给后代组件的数据或方法,在后代组件中使用inject选项来接收要添加到该实例中的特定属性。

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script src="vue.js"></script>
	</head>
	<body>
		<div id="app">
			<parent></parent>
		</div>
		
		<script>
			Vue.component('parent', {
			  methods: {
			  	sayHello(name){
			  		console.log("Hello, " + name);
			  	}
			  },
			  provide(){
			  	return {
			  		// 数据属性message和sayHello方法可供后代组件访问
			  		message: 'Vue.js无难事',
			  		hello : this.sayHello
			  	}
			  },
				template: '<child/>'
			});
			Vue.component('child', {
				// 接收message数据属性和hello方法
			 	inject: ['message', 'hello'],
			 	mounted(){
			 		// 当自身的方法来访问
			 		this.hello('zhangsan');
			 	},
			 	// 当自身的数据属性来访问
				template: '<p>{{message}}</p>'
			})

			new Vue({
			  el: '#app',
			  
			})
		</script>
	</body>
</html>