call-method-easycom.uvue 1.5 KB
Newer Older
H
hdx 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
<template>
  <view>
    <call-easy-method ref="callEasyMethod1"></call-easy-method>
  </view>
</template>

<script>
  export default {
    data() {
      return {
        $callEasyMethod1: null as CallEasyMethodComponentPublicInstance | null
      }
    },
    onReady() {
      // 通过组件 ref 属性获取组件实例, 组件标签名首字母大写,驼峰+ComponentPublicInstance
      this.$callEasyMethod1 = this.$refs['callEasyMethod1'] as CallEasyMethodComponentPublicInstance;
    },
    methods: {
      callMethod1() {
        // 调用组件的 foo1 方法
        this.$callEasyMethod1!.foo1();
      },
      callMethod2() {
        // 调用组件的 foo2 方法并传递 1个参数
        this.$callEasyMethod1!.foo2(Date.now());
      },
      callMethod3() {
        // 调用组件的 foo3 方法并传递 2个参数
        this.$callEasyMethod1!.foo3(Date.now(), Date.now());
      },
      callMethod4() {
        // 调用组件的 foo4 方法并传递 callback
        this.$callEasyMethod1!.foo4(() => {
          console.log('callback')
        });
      },
      callMethod5() {
        // 注意: 返回值可能为 null,当前例子一定不为空,所以加了 !
39
        const result = this.$callEasyMethod1!.foo5('string1') as string;
H
hdx 已提交
40 41
        console.log(result); // string1
      },
H
hdx 已提交
42
      callMethodTest(text: string): string | null {
43
        const result = this.$callEasyMethod1!.foo5(text) as string;
H
hdx 已提交
44 45
        return result;
      },
H
hdx 已提交
46 47 48
    }
  }
</script>