- 小程序嵌套H5页面添加业务域名 如何添加腾讯地图域名?
小程序调用H5页面 但是页面里用了腾讯地图 需要添加要业务域名 这要怎么添加?
2020-07-23 - 小程序webview嵌套h5?
小程序webview嵌套的H5网页,在嵌套的H5网页里面可以调起第三方地图导航吗?
2023-02-15 - h5页面分享,安卓机点链接进入不是到分享的页面,而是总是到首页,ios正常
[图片] 这个页面分享出去在ios可以正常进入此页面,安卓机以前可以进入,最近一段时间安卓机不能进入此页面,而是进入首页, 页面代码如下: <template> <view class="body"> <view class="content"> <!-- 轮播图 --> <view class="proImg"> <swiper indicator-dots autoplay interval="3000" duration="1000"> <swiper-item v-for="(item,idx) in groupdata.img" :key="idx"> <view class="swiper-item"><image :src="item" mode="aspectFill"></image></view> </swiper-item> </swiper> <view class="label flex_row_start_end"> <text>拼团活动结束时间:</text><bbs-countdown :time="timestamp" :now="now" @progress="progress" ref="countdown"></bbs-countdown> </view> </view> <!-- 标题 --> <view class="proInfo"> <view class="proName"> <view class="flex_row_start_between"> <view class="name" style="width: 500rpx;"> {{groupdata.goodsName}} </view> <view class="cleaningimgnum"> <image src="https://zixun.xcxlichao.cn/cbbtt/zyl/houseKeeping/people.png" mode=""></image> <text>{{User.groupUser}}人团</text> </view> </view> <view class="news"> {{groupdata.goodsAbstract}} </view> </view> <view class="Num flex_row_center_between"> <view class="Numwrapper flex_row_center"> <!-- <image src="https://zixun.xcxlichao.cn/cbbtt/zyl/houseKeeping/reduce02.png" mode=""></image> --> <view class="codeNum"> <text style="font-size: 26rpx;">团购价:</text><span>¥</span>{{groupdata.salePrice}} </view> <view class="getNum"> ¥{{groupdata.originalPrice}} </view> </view> <!-- <view class="salesNum"> 库存:111 </view> --> </view> </view> <!-- 服务保障 --> <view class="serving flex_row_center"> <view class="Serviceguarantee"> 服务保障 </view> <view class="service01 flex_row_center"> <image src="https://zixun.xcxlichao.cn/cbbtt/zyl/houseKeeping/servingIcon01.png" mode=""></image> 上门服务 </view> <view class="service01 flex_row_center"> <image src="https://zixun.xcxlichao.cn/cbbtt/zyl/houseKeeping/servingIcon02.png" mode=""></image> 科学打扫 </view> <view class="service01 flex_row_center"> <image src="https://zixun.xcxlichao.cn/cbbtt/zyl/houseKeeping/servingIcon03.png" mode=""></image> 专职保洁师 </view> </view> <!-- 规格 --> <view class="specifications flex_column_center"> <view class="specificationswrapper flex_row_center_between" @click="open"> <view class="specificationsleft"> 规格 </view> <view class="specificationsright flex_row_center"> <view class="Selected"> 已选:{{groupdata.style[switchindex].title}} </view> <image src="https://zixun.xcxlichao.cn/cbbtt/zyl/houseKeeping/rightArrow.png" mode=""></image> </view> </view> </view> <!-- 拼团成员 --> <view class="teammembers flex_column_center"> <view class="teammemberswrapper"> <view class="teammemberslist flex_row_center_between"> <view class="teammembersleft"> 团长 </view> <view class="teammembersright flex_row_center"> <image :src="group.groupImg" mode=""></image> <text>{{group.groupName}}</text> </view> </view> <view class="teammemberslist flex_row_center_between"> <view class="teammembersleft"> 拼团ID </view> <view class="teammembersright flex_row_center"> <text>{{User.id}}</text> </view> </view> <view class="teammemberslist flex_row_center_between"> <view class="teammembersleft"> 拼团成员 </view> <view class="teammembersright01 flex_row_center" v-if="groupUser"> <view class="" v-if="groupUser.length>5"> <image :src="item.avatar" mode="" v-for="(item,idx) in groupUserImg" :key='idx'></image>... </view> <view class="" v-else> <image :src="item.avatar" mode="" v-for="(item,idx) in groupUserImg" :key='idx'></image> </view> <text>{{groupUser.length?groupUser.length:'0'}}人已团</text> </view> </view> </view> </view> <!-- 商品详情 --> <view class="proDetail"> <view class="detailTitle flex_column_center"> <view class="title"> 商品详情 </view> </view> <view class="prodetailImg"> <rich-text :nodes="goodsDetails"></rich-text> <!-- <image src="https://zixun.xcxlichao.cn/cbbtt/zyl/houseKeeping/proDetail.png" mode=""></image> --> </view> </view> <view class="changeBack flex_row_center" v-if="isjoin"> <view :url="'../../order/groupconfirmorder?groupUuid='+groupUuid" class="groupbuy"> 已经参团 </view> </view> <view class="changeBack flex_row_center" v-else> <view class="groupbuy" @tap="full" v-if="notfull"> 该团已拼满 </view> <view class="groupbuy" @tap="open" v-else> 拼团购买 ¥<text>{{groupdata.salePrice}}</text> </view> </view> <!-- 选择规格弹出层 --> <uni-popup ref="popup" type="bottom"> <view class="popup"> <view class="popupwrapper"> <!-- 订单 --> <view class="flex_row_center"> <view class="popuporderleft"> <image :src="groupdata.style[switchindex].img" mode=""></image> </view> <view class="popuporderright"> <view class="popupordertitle"> {{groupdata.goodsName}} </view> <view class="flex_row_end"> <view class="popupprice"> <text>¥</text>{{groupdata.style[switchindex].money}} </view> </view> </view> </view> <!-- 规格 --> <view class="popupSpecifications"> <view class="popupSpecificationsname"> 规格 </view> <view class="popuplists flex_row_center"> <view :class="['popuplist',switchindex==idx?'popupchoosed':'']" v-for="(item,idx) in groupdata.style" :key='idx' @tap="switchtype(idx)"> {{item.title}} </view> </view> </view> <!-- 数量 --> <!-- <view class="popupnum flex_row_center_between"> <view class="popupnumleft"> 购买数量<text>(库存**)</text> </view> <view class="popupnumright flex_row"> <view class="popupicon" @tap="reduce"> - </view> <view class="popupnum01"> {{popupnum}} </view> <view class="popupicon" @tap="add"> + </view> </view> </view> --> <!-- 立即购买 --> <view class="popupbutton" @tap="nobuy" v-if="groupdata.single"> 立即拼团 </view> <navigator :url="'../../order/groupconfirmorder?groupUuid='+groupUuid+'&styleid='+groupdata.style[switchindex].id+'&index='+switchindex" class="popupbutton" v-else> 立即拼团 </navigator> </view> </view> </uni-popup> </view> </view> </template> <script> import uniPopup from '@/components/uni-popup/uni-popup.vue' import bbsCountdown from "@/components/bbs-countdown/bbs-countdown.vue" import api from '../../../static/config/api.js' import util from '../../../static/utils/util.js' import rich from "../../../static/rich-text-parse.js" export default { components: { uniPopup, bbsCountdown }, data() { return { switchindex:'0', groupUuid:'', groupdata:[] ,//拼团商品数据 groupUser:'' ,//拼团成员 groupUserImg:'',//拼团成员头像 group:'',//团长信息 endTime:'' ,//拼团结束时间 User:'', notfull:false, isjoin:'' ,//判断是否加入团 goodsDetails:'' ,//富文本 timestamp:'' } }, onLoad(info) { this.groupUuid = info.groupUuid this.endTime = info.endtime this.timestamp = new Date(info.endtime.replace(/-/g,'/')).getTime()-Date.now() console.log(this.timestamp); var isjoin = info.isjoin if(isjoin){ this.isjoin = true }else{ this.isjoin =false } this.getGroupInformation() }, onShareAppMessage(res) { var groupUuid = this.groupUuid var endTime = this.endTime var title = this.groupdata.goodsName // console.log(groupUuid,endTime); return { title: title, path: '/pages/index/Productdetails/groupdetails02?groupUuid='+groupUuid+'&endtime='+endTime } }, methods: { // 现在的时间戳--必须传入 now() { return Date.now() }, // 倒计时进行中 progress(time) { // console.log(time); }, //查询指定的拼团信息 getGroupInformation(){ var that = this util.request(api.GetGroupInformation,{groupUuid:that.groupUuid},'GET').then(function(res){ console.log('拼团信息',res) if(res.code == 200){ //拼团商品数据 that.groupdata = res.data.goods console.log("aa",that.groupdata) //拼团成员 that.groupUser = res.data.groupUser //根据拼团成员判断显示几个头像 if(that.groupUser&&that.groupUser.length>=5){ that.groupUserImg = that.groupUser.slice(0,5) }else{ that.groupUserImg = that.groupUser } //团长信息 that.group = res.data.group //拼团商品的id和拼团人数信息 that.User = res.data.groupInitiate //判断人数是否已满 if(that.groupUser&&that.User.groupUser==that.groupUser.length){ that.notfull = true } that.goodsDetails = rich.imgParse100Width(res.data.goods.goodsDetails) // console.log(that.groupdata) //分享 // #ifdef H5 that. fenxiang() // #endif } }) }, // 打开弹出层 open(){ if(!this.isjoin&&!this.notfull){ this.$refs.popup.open() } }, // 点击弹出层选择规格 switchtype(idx){ this.switchindex = idx }, //当拼团人数满后点击‘该拼团已满’ full(){ uni.showToast({ title: '该团已拼满,可参与其他团购', icon:'none', duration: 2000 }); }, //不可购买 nobuy(){ uni.showToast({ title:'此服务限购一次~~', icon:'none', duration:2000 }) }, //分享 fenxiang() { let that = this let imgUrl = 'https://zixun.xcxlichao.cn/cbbtt/zyl/houseKeeping/logo03.jpg' let url = window.location.href; util.request(api.getShare, { url: url }, 'GET').then((res) => { if (res.code == 200) { wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: res.data.appId, // 必填,公众号的唯一标识 timestamp: res.data.timestamp, // 必填,生成签名的时间戳 nonceStr: res.data.nonceStr, // 必填,生成签名的随机串 signature: res.data.signature, // 必填,签名,见附录1 jsApiList: [ "updateAppMessageShareData" ,"onMenuShareQQ" ,"updateTimelineShareData" ,"onMenuShareTimeline" ,"onMenuShareAppMessage"], // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 success: function() { // window.location("http://www.kangkanginhome.com/weixin/IndexHtml/tuan_list") }, }) wx.ready(function() { //需在用户可能点击分享按钮前就先调用 var obj={ title:that.groupdata.goodsName, // 分享标题 desc: that.groupdata.goodsAbstract, // 分享描述 link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: imgUrl, // 分享图标 fail: function (res) { }, success: function () { }, } //朋友圈 wx.onMenuShareTimeline && wx.onMenuShareTimeline(obj) //发送给好友 wx.onMenuShareAppMessage && wx.onMenuShareAppMessage(obj) // 2.1 监听“分享给朋友”,按钮点击、自定义分享内容及分享结果接口 wx.updateAppMessageShareData && wx.updateAppMessageShareData(obj); // 2.2 监听“分享到朋友圈”按钮点击、自定义分享内容及分享结果接口 wx.onMenuShareTimeline(obj); // 2.3 监听“分享到QQ”按钮点击、自定义分享内容及分享结果接口 wx.updateAppMessageShareData && wx.updateAppMessageShareData(obj); }); } }) } } } </script> <style> @import url("../../../static/css/Productdetails.css"); </style> https://m.clmeijia.com/h5/#/pages/index/Productdetails/groupdetails02?groupUuid=87b86003929a4bd5a463c222e32465ca&endtime=2021-12-31%2023%3A59%3A59
2021-12-06 - Bug!微信最新版本的快速分享无法带上自定义的分享链接参数
微信h5页面通过jssdk配置完成的分享链接在新版本的快速分享功能无法显示分享的描述信息及分享标题等参数,旧版的分享一切正常。[图片]
2021-10-08 - iOS(微信 7.0.14)点击进入自定义分享的微信h5网页,url的from参数丢失?
iOS(微信 7.0.14,iOS13.5.1)手机点击进入自定义分享的微信h5网页,网页的url的from参数会丢失。 用一台其他的手机(微信版本 非 7.0.14)将自定义h5网页分享出来,iOS(微信 7.0.14,iOS13.5.1)的手机进入h5链接后,当前链接的url的get参数(&from)会丢失,复制出来的链接(url)的get参数(&from)也同样丢失。用其他手机(安卓+苹果(微信版本非7.0.14)),则不会出现问题。 用一台手机(微信版本7.0.14,iOS13.5.1)将自定义h5网页分享出来,分享出来的链接,无论其他任何手机点击进去,get参数(&from)都是丢失的。 没有from参数,我就不能判定用户进入h5的来源了,请尽快解决! 是一个bug,问题一直存在(多次测试,iOS+微信版本7.0.14就一定会出现)
2020-07-13 - jssdk安卓快速分享无法带上自定义的分享链接参数2021-11-02
- 企业微信里分享小程序参数丢失
小程序是内嵌的h5,分享时拼接的参数, 在微信小程序里分享正常, 在企业微信里分享小程序,ios的分享没有拼接的参数,只是当前页面地址
2020-06-12 - vue中使用WX JS SDK 进行分享朋友圈和好友,分享的链接后面的参数丢失,只有部分机型有问题!
/**分享朋友圈和好友 */ toShareMomentsAndFriends() { var url = `${window.location.origin}${window.location.pathname}?state=${encodeURI(state)}` var title = this.pageData.shareTitle wx.ready(function() { wx.updateAppMessageShareData({ title: title, desc: '我在参加童妍记忆银行大咖宝贝挑赞赛,快来帮我点赞哦...', // link: url, link: 'https://clientserver.zhongyanimage.com/AlbumsLive/DetailNew?state=6010762_1⊱1⊱43369', imgUrl: 'https://objstorage.zhongyanimage.com/albumsLive/detailNew/shareImg.jpg', success: function(res) { // alert('分享好友') }, cancel: function(res) { // alert('取消分享好友') }, fail: function(res) { // alert('分享好友失败') } }) wx.updateTimelineShareData({ title: title, desc: '我在参加童妍记忆银行大咖宝贝挑赞赛,快来帮我点赞哦...', // link: url, link: 'https://clientserver.zhongyanimage.com/AlbumsLive/DetailNew?state=6010762_1⊱1⊱43369', imgUrl: 'https://objstorage.zhongyanimage.com/albumsLive/detailNew/shareImg.jpg', success: function(res) { // alert('分享到朋友圈成功') }, cancel: function(res) { // alert('取消分享到朋友圈') }, fail: function(res) { // alert('分享到朋友圈失败') } }) }) }, 正确链接 https://clientserver.zhongyanimage.com/albumsLive/detailNew?state=0018170%E2%8A%B11%E2%8A%B133539 在当前手机上分享出去的链接为:https://clientserver.zhongyanimage.com/albumsLive/detailNew 前后对比,参数丢失。 场景:H5页面,VUE(2.6.10) weixin-js-sdk(1.6.0) 代码如上。 目前,XS MAX(15.1) 和红米K30 5G版(MIUI 12.5.7)两台手机微信版本都是8.0.16 可以进行正常的分享,链接参数不会丢失。 之前都没有出现这个问题。 还有一个问题就是正常打开链接后,点击三个点的菜单,然后点击复制链接,复制出来的链接后面也是不带参数的。 需要加急!!!加急!!!加急!!! 微信日志已经上传,时间大概在 2021年11月28号 18:02:10 左右 上传日志的微信号:lyh_Gerry
2021-11-28 - 外链自定义分享不生效,在部分机型下微信分享到朋友圈只出现当前网页链接?
微信聊天窗口打开链接分享在iPhone下都出现了分享只有链接,updateAppMessageShareData自定义的标题和图片都没生效,出现问题的均为8.0.16,尝试过低版本8.0.5没有问题。在测试的安卓机器上显示的是外链提示,无法分享。但是通过二维码分享打开的网页分享又是正常的,期间并代码没有任何改动。 复现链接:https://www.vrtuoluo.cn/527988.html 出现问题微信版本:8.0.16 iPhone 8.0.16 [图片][图片] 前者是通过微信聊天窗口打开链接分享,后者是通过网站二维码扫码分享 PS:若是bug请尽快修复,已经影响到我司业务了,谢谢
2021-11-30 - 现在安卓手机的微信H5的audio 不能自动播放了吗?
请问:现在安卓手机的微信H5的audio 不能自动播放了吗?
2021-12-24