- 小程序分享朋友圈功能,安卓正常,ios真机图标无法展示,只能是默认的小程序图标
URL替换成浏览器随意图片地址,ios都能正常显示,所以这个URL挑不出毛病,找不出哪里不对。 onShareTimeline: function() { // let url = this.detail.productParticulars[0].url; // console.log("url", url); return { title: this.detail.product.pname, path: "/pages/detail/detail?customerId=" + this.$store.state.customerId + "&productId=" + this.$store.state.productId + "&kehuId=" + this.$store.state.userInfo.id, //点击分享链接之后进入的页面路径 imageUrl: 'https://www.58guoyin.com/api/utils/IoReadImage/20240517_ImageCenter_imageCenterParticulars_customer-1_202405171515256a0c6f53c0034d89af73101fb7a55053', }; }, [图片]
10-17 - 引入插件在安卓上报Error during evaluating file "app.js"
引入插件tfjsPlugin之后,编译到安卓上报错 Error during evaluating file "app.js": Cannot redefine property: toLocaleString Error during evaluating file "pages/tabbar/mine/mine.js": Cannot read properties of undefined (reading 'globalData') 更换其他插件后报同样错误, 去掉插件即不报错了! 请问这什么原因导致的啊
2023-04-09