vue中this.$parent.attribute为undefined问题

发布于 2022-09-07 23:35:26 字数 1105 浏览 24 评论 0

vue中this.$parent.attribute为undefined问题
vue2.9.6

<template>
<el-container>
  <h1>{{say}}</h1><br>
  <button @click='changeChild'>changeChild</button>
  <child-component ref="child"></child-component>
</el-container>
</template>

<script>
export default {
  data () {
    return {
      say: "I'm parent."
    }
  },
  methods: {
    changeChild () {
    
      //这里父组件掉子组件没问题,改值后界面上立刻响应。
      this.$refs.child.say = new Date().getTime()
    }
  },
  components: {
    'child-component': {
      data () { return { say: "I'm child." } },
      template: "<div><h1>{{say}}</h1><button @click='changeParent'>changeParent</button></div>",
      methods: {
        changeParent () {
        
          //此处总是undefined,导致我无法动态的改say的值。
          console.info(this.$parent.say)
        }
      }
    }
  }
}
</script>

我在子组件中调用this.$parent.say总是undefined,我打印出$parent,里面没有say这个属性,非常奇怪。
我在网上看到的用法都是这样用,为何别人的就没问题呢。是我缺少什么配置吗?还是我用法有问题?
求解,谢谢!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

萌酱 2022-09-14 23:35:26

谢谢你们!我发现this.$parent并非意识里的parent,我用了2个$parent就可以了。
this.$parent.$parent.say。

苏辞 2022-09-14 23:35:26
this.$nextTick(()=>{
  console.info(this.$parent.say)
})
感情旳空白 2022-09-14 23:35:26

是不是你控制台有报错?
你那么写是要用到vue的完整包的。
我这么写完全没问题,你可以试试。
https://codepen.io/rushui/ful...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文