关于vue的生命周期

https://img3.mukewang.com/5b49b2b2000183b707070259.jpg

这个是elementUI的tree控件

被选上的值是后台传给我的

//mounted生命中期中的代码:
    axios.get('/adSquad/findById',{
        params:{
            id:this.currentID
        }
    })
    .then(res=>{                this.$refs.tree_Interests.setCheckedKeys(res.data.data.interest); //设置被选中
            }
    })

浏览器提示了:'setCheckedKeys' of undefined
想了下,应该是生命周期的问题。tree控件还没加载出来就被赋值了,就会提示undefined。所以有没有方法等页面加载完成后去请求后台数据?

青春有我
浏览 272回答 2
2回答

精慕HU

this.$nextTick(()={         this.$refs.tree... })
打开App,查看更多内容
随时随地看视频慕课网APP