个人案例
- XIALUO
快速获取公众号历史文章链接
快速获取公众号历史文章链接扫码体验
- NFC Helper
NFC标签工具,支持写入小程序 URL Scheme。
NFC标签小助手扫码体验
可以设置一下缩放级别:CameraContext.setZoom(Object object) https://developers.weixin.qq.com/miniprogram/dev/api/media/camera/CameraContext.setZoom.html
iphone14 camera 近距离无法聚焦?iphone14,在近距离拍摄身份证时,无法聚焦。苹果其他版本手机均没有此类问题,有解决方法吗?
2023-06-07拼音+文字是一块: display: flex; flex-direction: column; align-items: center; 每句诗是一块: display: flex; flex-direction: row; align-items: center; 最后整体一块: display: flex; flex-direction: column; align-items: center; 数据组装格式: [ [ { pinyin: 'jing', zh: '静' }, { pinyin: 'ye', zh: '夜' }, { pinyin: 'si', zh: '思' } ], [ { pinyin: 'tang', zh: '【唐】' }, { pinyin: 'dai', zh: '【代】' }, { pinyin: 'li', zh: '李' }, { pinyin: 'bai', zh: '白' } ] ...... ] [图片]
css排版求教?[图片] 现在想让诗句上下都对齐,不单单每一行。求css的参数,使用flex布局。 css代码如下: text { font-family: "Microsoft YaHei"; } .container { display: flex; flex-direction: column; align-items: center; background-color: #f2f2f2; } /* 盒子 */ .box { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 10rpx; } /* 标题 */ .title { display: flex; flex-direction: row; align-items: flex-end; padding: 0 10rpx; } .title .pinyin { font-size: 1.5em; } .title .hanzi { font-size: 1.8em; } /* 诗人信息 */ .info { display: flex; flex-direction: row; align-items: flex-end; margin-bottom: 10rpx; } /* 朝代 */ .dynasty { display: flex; flex-direction: row; margin-right: 10rpx; } .dynasty .pinyin { font-size: 1.2em; } .dynasty .hanzi { font-size: 1.5em; } /* 诗人 */ .poet { display: flex; flex-direction: row; } .poet .pinyin { font-size: 1em; } .poet .hanzi { font-size: 1.3em; } /* 诗句 */ .verses { display: flex; flex-direction: column; align-items: center; justify-content: center; white-space: pre-wrap; text-align: justify; word-break: break-all; vertical-align: middle; } .verse { display: flex; flex-direction: row; align-items: flex-end; justify-content: center; vertical-align: middle; } .verse .pinyin { font-size: 1em; vertical-align: middle; } .verse .hanzi { font-size: 1.3em; vertical-align: middle; }
2023-06-06可以理解为一种快速打开小程序的途径,举一个使用场景:每个商品都有唯一的商品码,即一物一码,可以用微信扫这个码,快速打开小程序展示对应的商品介绍等等。
小程序官方后台开发管理里面的扫普通链接二维码打开小程序有啥用?小程序官方后台开发管理里面的扫普通链接二维码打开小程序有啥用? 这个功能 扫普通链接二维码打开小程序 [图片]
2023-06-06里面有使用到 canvasContext.createImageData 方法吗? 目前小程序那边使用了这个方法后,安卓手机微信升级到 8.0.37,会出现无法绘制问题。
使用 canvas.toTempFilePath截图在小米手机上会出现花屏?const dpr = wx.getSystemInfoSync().pixelRatio canvas.toTempFilePath({ x: 0, y: 0, width: 500, height: 400 , destWidth: 500*dpr, destHeight: 400*dpr, fileType: 'png', quality: 1, success(res) { wx.shareAppMessage({ imageUrl:res.tempFilePath, }); } }); 在其他手机上测试没有问题但是在小米手机上会出现花屏无法正常截图
2023-06-06里面有使用到 canvasContext.createImageData 方法吗? 目前小程序那边使用了这个方法后,安卓手机微信升级到 8.0.37,会出现无法绘制问题。
使用 toTempFilePathSync截图后分享图片为黑色https://developers.weixin.qq.com/minigame/dev/api/render/canvas/Canvas.toTempFilePathSync.html 使用这个api截图保存出来的画面黑色
2023-06-06wx.downloadFile 这一步可以不需要的,再去看看速度如何
canvas 2d createImage创建图片对象后,使用onload加载图片速度慢?Android 微信版本 8.0.37 let img = canvas.createImage(); const ctx = canvas.getContext('2d'); wx.downloadFile({ url: url, //网络图片 success:(res) => { img.src = res.tempFilePath; img.onload = () => { let imgSize = this.canvasImgMode(mode,img,width,height); ctx.drawImage(img, imgSize.sx,imgSize.sy,imgSize.sw,imgSize.sh, x, y, imgSize.width, imgSize.height); reslove(imgSize); } }, fail(error) { console.log(error) reslove() } }); 图片加载速度慢
2023-06-06不需要的,用别的手机试试,排除设备问题
wx.vibrateLong需要授权才能震动吗https://developers.weixin.qq.com/minigame/dev/api/device/vibrate/wx.vibrateLong.html
2023-06-06需在小程序后台开通接口权限
申请live-pusher权限?我在为法院开发项目,需要用到live-pusher和live-player,我们已有法院的授权书,并在类目添加了 政务民生-法院 类目,但还是没有权限访问这两个组件,碰到这种情况请问应该怎么办?
2023-06-05试试用 canvas.createImageData 替换 canvasContext.createImageData,我试了是可以的:https://developers.weixin.qq.com/community/develop/article/doc/0004cef0f980407630dfa1e2956013
小程序修改 ImageData.data 后,再使用putImageData绘制,没有效果问题详细链接 + 代码片段在这个问答里: https://developers.weixin.qq.com/community/develop/doc/000804de0887882f1fdfbd05651400 希望官方赶紧看到,这个问题很严重呀!
2023-06-05可以用 canvas.createImageData 替代 canvasContext.createImageData 方法解决,详细请看:https://developers.weixin.qq.com/community/develop/article/doc/0004cef0f980407630dfa1e2956013
CanvasCtx.createImageData 创建 imageData修改data 绘制无效使用 canvasContext.createImageData 创建一个 ImageData对象,并对 ImageData.data 进行修改后,使用 canvasContext.putImageData 进行绘制,无法正常绘制。 同时: 使用 canvasContext.getImageData 拿到的 imageData,修改 ImageData.data 后,使用canvasContext.putImageData 进行绘制,修改的内容无法绘制。 目前 微信8.0.37 版本的安卓客户端存在问题,之前的 8.0.35 正常。 测试机型: 三星 s22 + 三星 s10+
2023-06-05