补充一下,我想咨询的是:在微信会话页的分享卡片容器中,分享图片的宽高是多少,如果图片宽高是250x200,图片容器宽高是500x400,那么图片就会被放大,这是不期望发生的。
小程序分享卡片的尺寸是多少?已知小程序分享卡片的宽高比是5:4,求问卡片的具体宽高是多少像素?
07-22给swiper设置更大的高度/宽度,然后给swiper-item的style设置overflow: visible; margin-xxx: xxx即可
Swiper 超出部分设置了overflow:visible 但是看不到?[图片] 这是小程序端的 有元素但是不显示 [图片] 这是H5端的 正常
02-21这个问题只在安卓机型上出现,iOS没有这个问题
调用getStorageInfoSync()方法获取到的currentSize异常通过 getStorageInfoSync() 获取的 currentSize 和我们通过其keys调用 getStorageSync() 方法计算出的值相差太多,前者为10393kb,后者为四十多kb。 相关代码如下示: const sizeof = function(str, charset){ str = typeof str === 'string' ? str : JSON.stringify(str); let total = 0; charset = charset ? charset.toLowerCase() : ''; if(charset === 'utf-16' || charset === 'utf16'){ for(let i = 0, len = str.length; i < len; i++){ const charCode = str.charCodeAt(i); if(charCode <= 0xffff){ total += 2; }else{ total += 4; } } }else{ for(let i = 0, len = str.length; i < len; i++){ const charCode = str.charCodeAt(i); if(charCode <= 0x007f) { total += 1; }else if(charCode <= 0x07ff){ total += 2; }else if(charCode <= 0xffff){ total += 3; }else{ total += 4; } } } return total; } const storageInfo = wx.getStorageInfoSync(); const {currentSize, limitSize, keys = []} = storageInfo; keys.forEach((key, index) => { setTimeout(() => { const value = wx.getStorageSync(key); const size = sizeof(value); }, index * 20); });
2023-03-29