当前位置:   article > 正文

vue中--父组件调用子组件方法 ref实现 + ts内使用报错问题(断言解决)_通过ref调用子view方法

通过ref调用子view方法

开篇:最近需要编写一个组件互相传递消息,首先是父组件调用子组件方法并传值,在网上找到ref可以实现那么开始搞。

vue  ref  调用子组件的方法(原生)

定义子组件son.vue

组件内定义方法

  1. methods:{
  2. showToast(msg){
  3. console.log(msg)
  4. }
  5. }

父组件引入子组件,并声明ref

父组件里面的方法通过ref执行子组件的方法

  1. <template>
  2. <view>
  3. <view @click="show">点击我传递信息</view>
  4. <son ref="readmy"></son>
  5. </view>
  6. </template>
  7. <script>
  8. import Son '@/components/son.vue';
  9. export default {
  10. components: { Son },
  11. methods:{
  12. show(){
  13. this.$refs.readmy.showToast("我是传递过去的信息");
  14. }
  15. }
  16. }
  17. </script>

vue  ref  调用子组件的方法(TS)

这里我引入了两个插件,一个 TypeScript  /  第二个 vue-property-decorator (尤大大推出用类的方式写ts)

这里创建一个son.vue

  1. <template>
  2. <div>我是son.vue</div>
  3. </template>
  4. <script lang="ts">
  5. import {Component, Prop, Vue} from "vue-property-decorator";
  6. @Component({})
  7. export default class Son extends Vue{
  8. sendMsg(msg) {
  9. console.log(msg)
  10. }
  11. }
  12. </script>

父组件引入子组件,并声明ref

父组件里面的方法通过ref执行子组件的方法

  1. <template>
  2. <div>
  3. <div @click="sendMessage">点击我传递信息</div>
  4. <son ref="readmy"></son>
  5. </div>
  6. </template>
  7. <script lang="ts">
  8. import {Component, Vue} from "vue-property-decorator";
  9. import Son from "../../component/Son.vue";
  10. @Component({ components: { Son} })
  11. export default class Log extends Vue {
  12. sendMessage() {
  13. this.$refs.readmy.sendMsg('我是点击传递过来的数据啊')
  14. }
  15. }
  16. </script>

然后我满心期待运行,然后就报错了....

what the fuсk!!!!

这个问题困扰了我一整天,在百度也没遇到和我有一样问题的人。

然后第二天早晨睡醒就想出来了,这说明有问题解决不了需要多睡觉。

写这篇博客就是希望和我遇到一样问题的人能翻到我的博客。能帮助到你们。

断言,把数据断言成----子类类型

  1. setTimeout(() => {
  2. (this.$refs.mainIframe as Son).sendMsg('我是点击传递过来的数据啊')
  3. console.log(this.$refs.mainIframe)
  4. }, 2000);

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/65973
推荐阅读
相关标签
  

闽ICP备14008679号