vue 子组件触发父组件方法的两种方式

父组件:

<template>
<div>
<div @click="openChild">弹弹弹,弹出子组件</div>
<childs ref="alert" @watchChild="parentReceive"></childs> <!--监听子组件绑定的方法-->
</div>
</template>

<script>
import childs from '../components/modal/Alert'
export default{
	data(){
		return {
			msg: '我是父组件的msg!!!'
		}
	},
	components:{
		childs
	},
	methods:{
		parentReceive(message){
			alert(message);
		},
		openChild(){
			this.$refs.alert.open('我是子组件','子组件内容!!!!!');
		}
	}
}
</script>

<style>
</style>

子组件:

<template>
  <modal :show='show' ref="modal">
    <div slot="title">{{title}}</div>
    <div slot="content">{{content}}</div>
    <div slot="buttons" class="modal-buttons">
      <span class="modal-button" @click="_onClick()">确定</span>
    </div>
  </modal>
</template>

<script>
import Modal from './Modal'

export default {
  props: {
    show: {
      type: Boolean,
      default: false
    },
    okText: {
      type: String,
      default: '确定'
    },
  },
  data(){
  	return {
  		title: '',
  		content: ''
  	}
  },
  components: {
    Modal
  },
  methods: {
    open (title, content) {
    	this.title = title
    	this.content = content
      this.$refs.modal.open()
    },
    close () {
    	this.title = ''
    	this.content = ''    	
      this.$refs.modal.close()
    },
		_onClick(){
			this.close();
			this.$emit('watchChild','我是从子组件传过来的内容!!!');    //触发$emit绑定的watchChild方法
		}
  }
}
</script>

第一种方法:

如上:通过this.$emit()来触发父组件的方法。具体就是子组件触发$emit绑定的事件watchChild,然后父组件监听watchChild,一旦watchChild被触发便会触发父组件的parentReceive方法。

父组件:

<template>
<div>
<div @click="openChild">弹弹弹,弹出子组件</div>
<childs ref="alert" :on-ok="parentReceive"></childs>  <!--把父组件的方法名传给子组件的onOK属性-->
</div>
</template>

<script>
import childs from '../components/modal/Alert'
export default{
	data(){
		return {
			msg: '我是父组件的msg!!!'
		}
	},
	components:{
		childs
	},
	methods:{
		parentReceive(message){
			alert(message);
		},
		openChild(){
			this.$refs.alert.open('我是子组件','子组件内容!!!!!');
		}
	}
}
</script>

<style>
</style>

子组件:

<template>
  <modal :show='show' ref="modal">
    <div slot="title">{{title}}</div>
    <div slot="content">{{content}}</div>
    <div slot="buttons" class="modal-buttons">
      <span class="modal-button" @click="_onClick()">确定</span>
    </div>
  </modal>
</template>

<script>
import Modal from './Modal'

export default {
  props: {
    show: {
      type: Boolean,
      default: false
    },
    okText: {
      type: String,
      default: '确定'
    },
    onOk: {    //定义onOK属性
      type: Function
    }
  },
  data(){
  	return {
  		title: '',
  		content: ''
  	}
  },
  components: {
    Modal
  },
  methods: {
    open (title, content) {
    	this.title = title
    	this.content = content
      this.$refs.modal.open()
    },
    close () {
    	this.title = ''
    	this.content = ''    	
      this.$refs.modal.close()
    },
		_onClick(){
			this.close();
			if(this.onOk){
				this.onOk('我是子组件传递过来的数据!!!!');
			}
		}
  }
}
</script>

第二种方法:

在子组件props中定义属性onOK,类型为function,然后在父组件中把要触发的方法名传递给onOK属性,最后在子组件中判断onOk是否存在,是的话直接执行这个方法。

效果:





Vue2中,组件可以通过调用组件方法触发组件的相应操作。有两种常用的方法可以实现这个功能: 1. 使用props和$emit:在组件中将方法传递给组件组件通过props接收方法,并在合适的时机使用$emit触发方法。具体的步骤如下: - 在组件中定义一个方法,并将它传递给组件: ``` <template> <div> <child :handleClick="handleClick"></child> </div> </template> <script> import child from '@/components/child'; export default { components: { child }, methods: { handleClick() { console.log('组件方法'); } } }; </script> ``` - 在组件中接收组件传递的方法,并在需要的时候使用$emit触发它: ``` <template> <div> <button @click="handleClick">触发组件方法</button> </div> </template> <script> export default { props: ['handleClick'], methods: { handleClick() { this.handleClick(); } } }; </script> ``` 2. 使用$parent:在组件中可以通过this.$parent来直接调用组件方法。但是需要注意的是,这种方式有时会失效,且没有明确的触发点,因此不建议使用。具体的步骤如下: - 在组件中定义一个方法: ``` <template> <div> <child></child> </div> </template> <script> import child from '@/components/child'; export default { components: { child }, methods: { handleClick() { console.log('组件方法'); } } }; </script> ``` - 在组件中使用this.$parent调用组件方法: ``` <template> <div> <button @click="handleClick">触发组件方法</button> </div> </template> <script> export default { methods: { handleClick() { this.$parent.handleClick(); } } }; </script> ``` 综上所述,Vue2中组件可以通过props和$emit或者通过this.$parent来触发组件方法。推荐使用props和$emit的方式来实现这个功能。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [Vue 组件调用组件方法](https://blog.csdn.net/m0_58565372/article/details/129620870)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值