最新的3.0.2版本库,在小程序里面通过webView打开公众号文章,然后转发给好友,好友无法打开公众号文章直接报参数错误,3.0.1版本库是正常的。
打印出来的webViewUrl也是不一样的,3.0.2版本库获取到的webViewUrl在网页上打不开,但是3.0.1版本库获取到的webViewUrl可以打开;
onShareAppMessage(e) {
console.log(e.webViewUrl);
return {
title: 'title',
path:
'/pages/webView?type=article&link=' +
encodeURIComponent(e.webViewUrl),
success: function (res) {}, // 转发成功
fail: function (res) {} // 转发失败
};
}
你好,麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)