ray的share 微信分享网页格式中图片不显示
Posted: 2024年 Apr 24日 09:57
- Tuya MiniApp Tools 版本信息:0.6.3
- App 应用版本信息: 智能生活 iOS,APP版本5.12.0
- @ray-js/ray, @ray-js/panel-sdk的版本(如使用ray开发):ay-js/ray": "1.4.60",
- 移动设备信息:iPhoneXR iOS17.4.1
- 相关代码:
Code: Select all
const imgPath = 'https://public-biz.oss-cn-hangzhou.aliyuncs.com/sns/test/2023-01-10/7247cfb395e4445e83f31d9357bdafeb.png' showLoading({ title: "" }); downloadFile({ url: imgPath, timeout: 60 * 3 * 1000, success({ tempFilePath }) { if (tempFilePath) { share({ type: "WeChat", title: "title", message: "message", imagePath: tempFilePath, contentType: "web", filePath: tempFilePath, webPageUrl: "https://www.baidu.com", success: () => { console.log("share success"); }, fail: (e) => { console.log("share fail: ", e); }, }); } }, fail(params) { console.log("图片下载失败:", params, " 图片地址为:", imgPath); }, complete() { hideLoading(); }, });
- 日志信息:错误日志或 IDE 运行日志等~
- 问题描述(复现步骤):分享文字、图片正常。点击分享按钮调用share可以分享网页携带缩略图
- 预期结果:分享到微信,网页方式有缩略图
- 实际结果:无缩略图