欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 焦点 > uniapp APP端页面触发调用webview(页面为uniapp开发的H5)里的方法

uniapp APP端页面触发调用webview(页面为uniapp开发的H5)里的方法

2025/1/23 17:06:21 来源:https://blog.csdn.net/m0_49083276/article/details/145300682  浏览:    关键词:uniapp APP端页面触发调用webview(页面为uniapp开发的H5)里的方法

原理:

使用 getCurrentInstance() 获取当前组件的 Vue 实例,通过 instance.proxy.$scope.$getAppWebview() 获取 Uniapp 的原生 WebView 对象。 使用 WebView 提供的 evalJS 方法,执行嵌入 H5 页面内的 JavaScript 代码

<template><view class="main"><view v-if="url" class="" style="width: 100%;height: 50vh;"><web-view @message="onMessageFromH5" id="webView" ref="webView" @error="onError" :src="url"></web-view></view></view>
</template>
function getData() {url.value = "http://192.168.0.22:5174/#/pages/orderDatelis/orderDatelis"orderDetails({id: orderId.value}).then(res => {const {end_latitude,end_longitude,id,start_latitude,start_longitude} = res.datasend(res.data)})}function send(data) {const json = JSON.stringify(data)if (instance) {const currentWebview = instance.proxy.$scope?.$getAppWebview();const wv = currentWebview.children()[0];wv.evalJS(`msgFromUniapp(${json})`);console.warn("发送");} else {console.warn('getCurrentInstance() returned null');}}

代码大意:调完接口后将接口返回参数注入webview

uniapp H5 webview部分:

onMounted(() => {window.msgFromUniapp = (res) => {send(res)try {data.value = resinitMap()} catch (e) {uni.showToast({title: e.message})send(e.message)}}})

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com