Uniapp小程序

uniapp: 微信小程序内嵌 h5 页面分享给好友

2021-01-19  本文已影响0人  岚平果
一、 小程序内嵌 h5 用 web-view
<template>
    <view @tap="tap">
        <web-view :src="web_url"></web-view>
    </view>
</template>
二、实现 h5 页面分享, 首页要 进入的页面和 h5 页面要在主包里, 如下
image.png
三、h5 页面分享操作如下
onShareAppMessage(options) {
   return {
    title: this.title,
    path: `/pages/information/web-view?url=${this.web_url}&title=${this.title}`,
 }
}
四、information 跳转到 web-view h5 页面如下操作
let url = `./web-view?url=${item.url}&title=${item.title}`
uni.navigateTo({
  url,
})
上一篇下一篇

猜你喜欢

热点阅读