[图片]空白图 另外index.html已经添加到11000个字节了
部分Android机型公众号进入空白,标题都不显示复现场景:云真机 vivo IQOO pro机型 微信打开链接或者公众号进入为空白 链接: https:kaipantest.longfor.com 云真机链接:https://wetest.qq.com/cloud/n/remotedevicelist?test=remote 选择机型[图片] [图片] 第三个手机微信始终无法访问到链接 https:kaipantest.longfor.com 打开一直都是空白 第二部猜测为缓存问题,直接访问公众号无法访问,微信内多次打开链接可以访问,之后公众号可以访问,再次进入云真机仍不可访问 另外,如果打开页面是空白,后台不会有请求记录,没有任何日志 我们把网址换成一个没有任何js的静态页,第三个手机都无法正常访问
2020-08-26https://developers.weixin.qq.com/s/MAlR2smp7Z4W
图标经常在iOS上面显示不出来图标在iOS上面经常会有不显示的情况,应该是iOS的缓存造成的,这个问题经常会发生,不是这个图标不显示就是另外一个,调试发现链接是没错的,但是不显示,是要给项目中每张图都加个随机数参数吗,这样也太麻烦了 机型是iPhone8p
2018-12-06哪儿写错了啊
util.js中调用wx.hideloading()方法没反应页面用了wx.loading(); 想在util.js中隐藏加载动画 调用wx.hideloading()方法没反应 是我用法不对吗,还是说wx.hideloading()不能在util中调用 [图片]
2018-12-05ok,完美,thanks
bind:tap跟bindtap一样吗?这样用有没有问题啊bind:tap跟bindtap一样吗?这样用有没有问题啊
2018-11-08楼主问题解决了吗,现在我的项目安卓没事,苹果上面老是有图片显示不出来,最近一个8p的经常出问题,两张图没有显示,找不到问题,调试显示的链接是对着的,就是不显示,ps切片直接导出的图片,应该不是图片问题,gif的图片,但是有时候png也会有这个bug,是因为不是https的原因吗
个别图片安卓手机图片显示正常,但是ios不显示图片1:用的是网络图片,使用的是image组件,https路径 2:编辑器上均可以显示,真机上安卓手机上均可以正常显示,ios不能显示
2018-11-07var query = wx.createSelectorQuery(); query.select('.getwidth').boundingClientRect(function (rect) { var context = wx.createContext('customCanvas'); var scale = that.data.scale; var lefttext = 35 * scale; var radius = 240 * scale; //下载医生图片到本地 wx.downloadFile({ // url: doctor.headImg, url: img_path + 'doctor.jpg', success: function (res) { //下载二维码到本地 wx.downloadFile({ url: img_path + 'cardewm.jpg', success: function (erweima) { //白色背景 context.rect(0, 0, 750 * scale, 480 * scale) context.setFillStyle('#fff') context.setStrokeStyle("#fff"); context.fill() //绘制颜色块 context.beginPath(); context.setFillStyle("#fff"); context.setStrokeStyle("#97ccff"); context.rect(0, 316 * scale, Math.round(rect.width) + 5, 24) context.fill() context.stroke() //绘制颜色块 context.beginPath(); context.setFillStyle("#97ccff"); context.setStrokeStyle("#97ccff"); context.rect(0, 270 * scale, Math.round(rect.width) + 5, 24) context.fill() context.stroke() //绘制医院名 context.setFontSize(26); context.setFillStyle('#333'); context.font = 'normal 20rpx sans-serif'; context.fillText(doctor.hospitalName, 0, 130 * scale); context.stroke(); //绘制医生名 context.setFontSize(28); context.setFillStyle('#96ccff'); context.fillText(doctor.name, 0, 212 * scale); context.stroke(); //绘制科室 context.setFontSize(16); context.setFillStyle('#fff'); // context.fillText(doctor.section, 15 * scale, 371 * scale); context.fillText('耳鼻喉科', 15 * scale, 308 * scale); context.stroke(); //绘制职称 context.setFontSize(16); context.setFillStyle('#97ccff'); // context.fillText(doctor.jobTitle, 15 * scale, 371 * scale); context.fillText('主任医师', 15 * scale, 354 * scale); context.stroke(); //绘制二维码小图标 context.drawImage(erweima.tempFilePath, 0, 390 * scale, 144 * scale, 49 * scale); //绘制医生图片 context.setStrokeStyle('rgba(0,0,0,0)') context.save() context.beginPath() context.arc(550 * scale, 240 * scale, radius, 0, Math.PI * 2, false); context.clip() context.drawImage(res.tempFilePath, 310 * scale, 0, radius * 2, radius * 2); context.restore() //绘制英文 SAMRT MEDICAL CARE. context.setFillStyle('#ccc'); context.setFontSize(22); context.fillText('SAMRT MEDICAL CARE.', 0, 53 * scale); context.stroke(); context.save(); context.draw(true) // 配置分享名片 wx.drawCanvas({ canvasId: 'customCanvas', actions: context.getActions(), }); wx.canvasToTempFilePath({
cavas里面draw方法调用画布就空白,怎么保存图片啊如题,画布保存图片的方法里面说要在draw方法回调里面写才能保证保存成功,但是调了这个方法页面都成空白了,要怎么保存图片呢
2018-10-15好吧,也只能css自己写overflow: hidden 隐藏了
滚动条iOS隐藏不掉- 当前 Bug 的表现(可附上截图) iOS有滚动条,隐藏不掉 - 预期表现 隐藏滚动条 - 复现路径 - 提供一个最简复现 Demo ::-webkit-scrollbar { width: 0; height: 0; color: transparent; }
2018-09-27