• vue中通过render函数给子组件设置ref


    正常我们的写法是,这样ref不会生效,h是作用在渲染的时候的,而ref是渲染之后才创建的,因此在h函数中使用ref是无效的。

    render: (h, params) => {
    				        	
    	return h(expandRow, {
    	    ref:'child',
    	    props: {
    	        row: params.row
    	    }
    				
    		})    
    }
    			

    我们常见h函数的用法是:

    render: (h) => {
        return h(ele)
    }

    => 是es6的用法,相当于 (h) => {}  相当于 function(){},上面的代码可解析为:

    render: function(createElement) {
        return createElement(ele);
    }

    Vue在创建Vue实例时,通过render作为函数来渲染Dom树,而在render方法中,又调用createElement函数来渲染子组件或元素。因此此时元素或子组件处于渲染过程。ref是用来给元素或子组件注册引用信息的,引用信息将会注册在父组件的$refs对象上。因为 ref 本身是作为渲染结果被创建的,在初始渲染的时候你不能访问它们 - 它们还不存在!

    解决办法

    把h改为创建 this.$createElement

    render: (h, params) => {
    				        	
    	return this.$createElement(expandRow, {
    	    ref:'child',
    	    props: {
    	        row: params.row
    	    }
    				
    		})    
    }
    				
  • 相关阅读:
    第一课:人人站安装与使用教程
    linux 多个python版本的切换
    参考文章
    windows下scrapy 的安装
    vi 使用入门
    linux 源码安装
    C语言—第二次作业
    C语言第0次作业
    c语言博客园作业03函数
    tomcat对于web.xml的securityconstraint使用的处理机制
  • 原文地址:https://www.cnblogs.com/kingjordan/p/12026985.html
Copyright © 2020-2023  润新知