uni-app $refs的基本用法

Posted 奔跑的蜗牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uni-app $refs的基本用法相关的知识,希望对你有一定的参考价值。

$refs的基本用法

一个对象(Object),持有注册过 ref 特性 的所有 DOM 元素和组件实例。

 

 

技术分享图片
<template>
    <view class="container" style="background: #0FAEFF;">
        <view class="child"> hi {{showModal}}</view>
    </view>
</template>
<script>
    export default {
        props: {
            showModal: {
                type: String,
                default: ‘hello‘
            }
        },
        data() {
            return {
                childdata: ‘child value‘
            };
        },
        methods: {
            sayHello() {
                console.info("--child:--" + this.showModal);
            }
        }
    }
</script>
 
child
技术分享图片
<template>
    <view class="container">
        <child :showModal="showModal" ref="vref"></child>
        
           <button @tap="refMethods" type="primary" >点击</button>
    </view>
</template>

<script>
    import child from "../../components/child.vue"

    export default {
        components: {
            child
        },
        data() {
            return {
                showModal: " parent say",
                parentValue: ‘‘,
                syncDate: ‘ p syncDate‘
            };
        },
        methods: {
            refMethods() {
                var child = this.$refs.vref;
                child.sayHello();
            }

        }
    }
</script>

<style>

</style>
parent

 

以上是关于uni-app $refs的基本用法的主要内容,如果未能解决你的问题,请参考以下文章

vue $refs的基本用法

c#中的ref用法

vue中ref的用法

C中ref用法

P17:React高级-ref 的用法和 ref 中的坑

python调试:pdb基本用法(转)