- uniapp中微信小程序支付调用wx.requestPayment失败,拉不起支付,怎么回事?
开发版和体验版 都能够正常拉起微信支付,但是上传后的正式版无法拉起微信支付。报 “wx.requestPayment is deprecated for shop plugin.please use wx.requestOrderPayment” 和 “requestPayment:fail check ticket rejected” 的错误 网上找的解决方案都是关于 商户平台的,但我们交易都是自己的平台接口,没用商户平台的组件。如何解决啊?
2022-06-30 - 1:小程序功能不符合规则? 选择的位置信息?
原始ID gh_0b45461d9f65 审核失败通知时间 1655306636 但是,我这边查看了隐私信息,有设置过 “选择的位置信息”这个隐私的啊。
2022-06-16 - 小程序的map清除markers setData将marker置空后,安卓还会显示上次的内容?
小程序map组件,初始化渲染marker之后,点击类型切换,重新请求数据,在请求时先用setData将marker设为[ ] ,再赋值新数组,但是安卓还会显示上次marker的内容
2021-10-27 - android下map组件的markers和circles反复渲染后,效果残留且无法清除,如何解决?
问题描述:在地图上点上marker和circle后,反复拉动slider给marker和circle赋值重新渲染后,会出现多余的marker和circle,但是在调试的时候并没有从AppData和 wxml中map节点中的circles及markers属性中发现这多出来的marker/circle。 产品方的需求,要在地图上绘制围栏,并且需要有动态的渲染过程。 残留问题出现在安卓上(个别机器只需要拉动就会出现);开发工具和ios暂无发现。 也尝试过重新点击清除marker和circle后再渲染和addmarkers的相关api,还是无法解决,现寻求各位大佬的解决办法!!谢谢!! 代码片段:https://developers.weixin.qq.com/s/Ed90jLmF7Gvy
2021-12-23 - 一点击登录就出现,但是后面的能正常运行,登录的账号也没有问题。url_info是什么?
[图片]
2022-05-16 - 自定义 tabBar 中,定义的 pageLifetimes 中的 show 为什么无法触发?
tabbar自定义custom-tab-bar组件的pageLifetimes的show方法不执行?? - 微信开放社区 https://developers.weixin.qq.com/community/develop/doc/0000a82fdd8e38f671aafd36a5d000 小助手重视下这个问题吧, 不是 page 页面的 pageLifetimes,是自定义 tabbar 里面的。 不是 page 页面的 pageLifetimes,是自定义 tabbar 里面的。 不是 page 页面的 pageLifetimes,是自定义 tabbar 里面的。 [图片]
2020-09-07 - cover-view 的scroll问题。安卓手机无法滑动?
需求地图上添加滑动视图 https://developers.weixin.qq.com/s/tHa83FmV7BaO 第二个尝试同层渲染,真机不行。 一和三只有安卓手机不正常
2019-08-16 - video全屏状态下 安卓手机cover-view无法滑动 ios可以滑动
在video非全屏状态下cover-view在ios和安卓上均可以滑动
2019-10-24 - 安卓系统下,video全屏展示时控制的cover-view内容没有展示,怎么解决?
wxml: <video id="myVideo" class="video" src="{{videoSrc}}" enable-danmu controls show-fullscreen-btn show-center-play-btn="{{false}}" auto-pause-if-navigate auto-pause-if-open-native show-play-btn object-fit="contain" bindpause="bindpause" bindended="bindended" bindfullscreenchange="bindfullscreenchange" title="保单服务" bindcontrolstoggle="bindcontrolstoggle" poster="{{videoCoverImg}}"> <cover-view class="videoH" wx:if="{{isvideoH}}"> <cover-view class="videoH-01" data-id="2" bindtap="clickList"> <cover-image src="https://yjm.henan100.com/littleCode/images/product_01.png" mode="widthFix" class="videoH-01-cover-image"></cover-image> <cover-view class="videoH-01-text">详情</cover-view> </cover-view> <cover-view class="videoH-01" data-id="3" bindtap="clickList"> <cover-image src="https://yjm.henan100.com/littleCode/images/product_02.png" mode="widthFix" class="videoH-01-cover-image"></cover-image> <cover-view class="videoH-01-text">流程</cover-view> </cover-view> <cover-view class="videoH-01" data-id="4" bindtap="clickList"> <cover-image src="https://yjm.henan100.com/littleCode/images/product_03.png" mode="widthFix" class="videoH-01-cover-image"></cover-image> <cover-view class="videoH-01-text">案例</cover-view> </cover-view> </cover-view> </video> wsxx: .videoH{ width:200rpx; height: 100vh; position: absolute; left:0; top: 0; z-index: 99999; background: rgba(0,0,0,1); display: flex; align-items: center; justify-content: center; flex-direction:column;} .videoH-01{ width:50%; text-align: center; padding-top: 40rpx;} .videoH-01-cover-image{ width:80rpx; height: 80rpx; margin:0 auto;} .videoH-01-text{ display: block; width:100%; font-size: 30rpx; color:#fff; padding-top:10rpx;} js: bindfullscreenchange:function (e) { let screen = e.detail.fullScreen; let direction = e.detail.direction; if (direction=="horizontal" ){ this.setData({ direction:"horizontal", fullScreen:screen, isvideoH:true }) }else{ this.setData({ direction:"vertical", fullScreen:false, isvideoH:false }) } console.log("是否全屏"+screen); console.log("屏方向"+direction); console.log("出现了么"+this.data.isvideoH); }, bindcontrolstoggle:function (e) { if(this.data.fullScreen && e.detail.show && this.data.direction=="horizontal"){ console.log("aa"); this.setData({ isvideoH:true }) }else{ console.log("bb"); this.setData({ isvideoH:false }) } }
2021-11-08 - video 增加 controls 显示隐藏事件
#### 功能描述 video 增加 controls 显示隐藏事件
2020-04-15