wxffb441f4637fceaf 用户隐私保护指引 申请加急审核 ,谢谢
用户隐私保护指引审核要多久啊?提交了具体审核要多久啊。。。突然就授权不了才发现有更新要求。。。以后有这种影响用户的 微信团队能不能强提示一下 推送到开发者微信 不然只是一个后台提示 谁知道呀。。。。
2023-11-02注意:官方文档并没有列出此api。请谨慎考虑使用,建议跳转新页面json设置"pageOrientation": "landscape" setPageOrientation: function(){ var that = this; wx.setPageOrientation({ orientation: that.data.PageOrientation, // landscape 横屏; portrait 竖屏 complete: function(res){ console.log(" 横屏回调 -- ",res); if(that.data.PageOrientation == "landscape"){ that.data.PageOrientation = "portrait"; }else{ that.data.PageOrientation = "landscape"; } } }) },
哥哥们这个横屏的样式是怎么弄的?[图片] 求求了 求求了
2022-01-04注意:官方文档并没有列出此api。请谨慎考虑使用,建议跳转新页面json设置"pageOrientation": "landscape" setPageOrientation: function(){ var that = this; wx.setPageOrientation({ orientation: that.data.PageOrientation, // landscape 横屏; portrait 竖屏 complete: function(res){ console.log(" 横屏回调 -- ",res); if(that.data.PageOrientation == "landscape"){ that.data.PageOrientation = "portrait"; }else{ that.data.PageOrientation = "landscape"; } } }) },
小程序设置横屏?小程序设置横屏?
2022-01-04注意:官方文档并没有列出此api。请谨慎考虑使用,建议跳转新页面json设置"pageOrientation": "landscape" setPageOrientation: function(){ var that = this; wx.setPageOrientation({ orientation: that.data.PageOrientation, // landscape 横屏; portrait 竖屏 complete: function(res){ console.log(" 横屏回调 -- ",res); if(that.data.PageOrientation == "landscape"){ that.data.PageOrientation = "portrait"; }else{ that.data.PageOrientation = "landscape"; } } }) },
小程序可以强制横屏吗?请问小程序目前是否支持强制横屏?需要强制用户横屏观看 不是自适应 pageOrientation 不太合适
2022-01-04注意:官方文档并没有列出此api。请谨慎考虑使用,建议跳转新页面json设置"pageOrientation": "landscape" setPageOrientation: function(){ var that = this; wx.setPageOrientation({ orientation: that.data.PageOrientation, // landscape 横屏; portrait 竖屏 complete: function(res){ console.log(" 横屏回调 -- ",res); if(that.data.PageOrientation == "landscape"){ that.data.PageOrientation = "portrait"; }else{ that.data.PageOrientation = "landscape"; } } }) },
小程序能通过js改变配置pageOrientation值 使得屏幕强制横屏或者竖屏吗https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/page.html
2022-01-04 let ecComponent = that.selectComponent('#mychart-id'); ecComponent.init((canvas, width, height, dpr) => { const chart = echarts.init(canvas, null, { width: width, height: height, devicePixelRatio: dpr //解决小程序视图模糊的问题 }); chart.setOption(option); // 返回 chart 实例 return chart; }); 如果不能解决,尝试延迟 300 毫秒执行
请问小程序中echarts初始化的时候配置了像素比为什么echarts还是模糊?开发者工具中显示正常 [图片] 真机还是很糊 [图片] 初始化已设置像素比 [图片]
2022-01-031、加上 devicePixelRatio: dpr 2、延迟300毫秒显示 setTimeout(() => { that.init_echarts(option); }, 300);
echarts-for-weixin画的图表为什么会这么模糊?echarts-for-weixin画的图表很模糊,都没有相关的问题,想知道是不是我实现的原因,感谢!
2022-01-03是的,video有这个问题,同层渲染时如果加了判断去显示就失效了。live-player又是可以的
video全屏时,同层渲染失效通过使用z-index的方式,创建一个view,产生一个动态水印的效果,在video全屏的时候,这个水印view失效。
2021-09-02全屏之后的任何改变都无效,设置背景颜色也不行的
<video> 组件api全屏后无法动态显示view?今天因公司业务需要,需要在视频全屏后在页面展示内容,遇到以下问题: 1、<video> 在使用videoContext.requestFullScreen() 进入全屏后,无法动态显示里面的view 因开发文档说明目前原生组件均已支持同层渲染,建议将view 替换 cover-view 使用; <video ... > <view wx:if="{{newquanping}}" style="top:60rpx;z-index:99;" class="video-controls-containerss" ontap="fullScreenvideo"> <text>变小video</text> <text class="iconfont icon-zhnyquanping"></text> </view> </video> 上面是用 wx:if="{{newquanping}}" 动态控制显示,但是全屏后是没有显示的,不管是用 hidden,还是设置 display,甚至是 visibility 和 opacity 都没有任何反应; 唯一在全屏后能显示的一种情况是: 小屏就显示,不去动态控制。 发现的问题是,进入全屏后,只能显示小屏时的内容,并没有更新节点信息; 我用 <live-player></live-player> ,发现没有任何问题,就只有 <video> 不行,希望官方能解答一下,谢谢了!
2021-08-20我们公司小程序也是,有两台苹果手机可以,3台不可以。看文档是只支持安卓,估计是在灰度测试,部分ios 系统被选中内侧。
为什么只有部分iphone可以转发小程序到朋友圈?办公司有好几个iphone手机不能转发小程序至朋友圈,同一个小程序下测试,是因为这个功能还没全开放呢。还是和视频号一样,很少发朋友圈的号都会没有开放。
2021-02-04