[图片][图片]
基础库 3.6.2 开始, ios开启 enableChunked 会中断其他的请求!!!经过严密测试,结论: 从基础库 3.6.2 开始, ios系统 在wx.request 请求开启 enableChunked, 会将之前所有的 enableChunked 的请求中断。也就是永远只有最新发起的enableChunked 才有效,其他都挂了。 请尽快修复,严重影响了线上版本,谢谢! 基础库 3.5.8 及以下版本是正常的
12小时前是的,我这边也遇到的,经过测试,全局只能存在一个,就是最后发起的那个enableChunked请求,其他都断掉了收不到消息。安卓,开发工具不会,就是ios会
IOS手机使用wx.request开启enableChunked同时请求会导致前一个中断?[图片] 之前一直是没问题的,现在发现在ios上同时请求会导致前一个流式输出中断,安卓和开发者工具都正常。
13小时前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