-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Closed
Labels
mp-alipay支付宝小程序支付宝小程序
Description
页面内容
<template>
<view class="login">
<mot-modal ref="ModalRef" id="ModalRef"></mot-modal>
</view>
</template>
<script setup lang="ts">
const ModalRef = ref();
</script>
其他地方获取页面上面挂载的ref
var pages = getCurrentPages();
var page = pages[pages.length - 1];
console.log('当前页面', page.$vm?.$refs);
结果:微信和h5可以获取到,支付宝在页面实例上面没有挂载refs导致获取不到
源码分析
支付宝未获取当前页面ref挂载上去
微信源码:
支付宝源码
Metadata
Metadata
Assignees
Labels
mp-alipay支付宝小程序支付宝小程序