<functional-page-navigator
name="loginAndGetUserInfo"
args="{{ args }}"
version="develop"
bind:success="loginSuccess"
bind:fail="loginFail"
>
<button type="button" class="xzui-btn xzui-btn_b primary" size="large">去登录</button>
</functional-page-navigator>
这个loginSuccess拿到数据以后,我想主动告诉小程序,我成功了,并且把数据提交给小程序,怎么弄?
插件自定义组件可以通过触发事件和所在页面通信 https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/events.html#%E8%A7%A6%E5%8F%91%E4%BA%8B%E4%BB%B6,插件页面可以通过 EventChannel 和上一个页面通信 https://developers.weixin.qq.com/miniprogram/dev/api/route/wx.navigateTo.html#%E7%A4%BA%E4%BE%8B%E4%BB%A3%E7%A0%81,或者其他普通自定义组件和普通页面可用的方法也是可以的