iphone web-view 分享无法获取当前地址
在iphone 打开的 web-view 页面多次点击后分享的页面是第一次进入的地址安卓正常
onShareAppMessage: function (options) { let that = this
let return_url = encodeURIComponent(options.webViewUrl) let share_title = '分享' let image_url = '' var paths = 'pages/sharepage/sharepage?sharesssUrl=' + return_url return { title: share_title, path: paths, imageUrl: image_url, success: function (res) { // 转发成功 wx.showToast({ title: "转发成功" , icon: 'success' , duration: 2000 }) }, fail: function (res) { // 转发失败 } } }, |
3 回复
你好,请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。