- IOS下使用缓存路径的图片无法显示?
<view wx:if="{{url}}" style="background:url('{{url}}'); background-position: -4px 0px;width:110rpx;height:110rpx;" > </view> //下载一张图片, wx.downloadFile({ url: 'https://langrensha01.oss-cn-shenzhen.aliyuncs.com/app/default/wxmini/emoticons/emoji.png', success({ tempFilePath }) { //这里会放到缓存,测试代码不处理 me.setData({ url:tempFilePath }) } }) 在IDE和安卓下能正常显示,IOS下无法显示。 [图片] 代码片段:https://developers.weixin.qq.com/s/MrCtIAmT7Tr9 设备:iphone7 软件版本:13.1.3 微信版本:8.0.7
2021-07-06 - wxml-to-canvas 会有宽高度限制吗?
官方推荐的长截图工具,wxml-to-canvas我看了源码,wxml-to-canvas可以设置width和height,但是宽或高的数值过大,在真机上则完全不渲染。 经测试,width和height小于1300才可以渲染。大于1400的在真机上无法渲染。 // 以下代码在真机上无法渲染到canvas // 在官方的源码片段上,只增加了height="2500" <wxml-to-canvas class="widget" width="2500"></wxml-to-canvas> 代码片段:https://developers.weixin.qq.com/s/ASoVbMmY7hpT 手机型号:mate30 pro 安卓版本:Android 10 微信版本:8.0.2
2021-04-23