call-method-easycom.uvue 1.5 KB
Newer Older
H
hdx 已提交
1 2 3 4 5 6 7 8 9 10
<template>
  <view>
    <call-easy-method ref="callEasyMethod1"></call-easy-method>
  </view>
</template>

<script>
  export default {
    data() {
      return {
雪洛's avatar
雪洛 已提交
11
        callEasyMethod1: null as CallEasyMethodComponentPublicInstance | null
H
hdx 已提交
12 13 14 15
      }
    },
    onReady() {
      // 通过组件 ref 属性获取组件实例, 组件标签名首字母大写,驼峰+ComponentPublicInstance
雪洛's avatar
雪洛 已提交
16
      this.callEasyMethod1 = this.$refs['callEasyMethod1'] as CallEasyMethodComponentPublicInstance;
H
hdx 已提交
17 18 19 20
    },
    methods: {
      callMethod1() {
        // 调用组件的 foo1 方法
雪洛's avatar
雪洛 已提交
21
        this.callEasyMethod1!.foo1();
H
hdx 已提交
22 23 24
      },
      callMethod2() {
        // 调用组件的 foo2 方法并传递 1个参数
雪洛's avatar
雪洛 已提交
25
        this.callEasyMethod1!.foo2(Date.now());
H
hdx 已提交
26 27 28
      },
      callMethod3() {
        // 调用组件的 foo3 方法并传递 2个参数
雪洛's avatar
雪洛 已提交
29
        this.callEasyMethod1!.foo3(Date.now(), Date.now());
H
hdx 已提交
30 31 32
      },
      callMethod4() {
        // 调用组件的 foo4 方法并传递 callback
雪洛's avatar
雪洛 已提交
33
        this.callEasyMethod1!.foo4(() => {
H
hdx 已提交
34 35 36 37 38
          console.log('callback')
        });
      },
      callMethod5() {
        // 注意: 返回值可能为 null,当前例子一定不为空,所以加了 !
雪洛's avatar
雪洛 已提交
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 {
雪洛's avatar
雪洛 已提交
43
        const result = this.callEasyMethod1!.foo5(text) as string;
H
hdx 已提交
44 45
        return result;
      },
H
hdx 已提交
46 47 48
    }
  }
</script>