- 生成的小程序码wxacode.get 参数只有宽度 没有高度?
[图片] 这是返回的二维码 宽高比不一致 文档也和之前的不一样 不得不吐槽一下这个文档真的是垃圾
2019-11-11 - 小程序上线发布后 微信客户端入口搜索不到 全称也不行
- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo 您好,我想问一下,我的小程序已显示上线,为什么微信里搜不到我的小程序呢? 我的小程序名字是: 橘子小姐云衣橱 小程序ID是:wx3f837a2ea1d70ebe
2019-04-09 - 官方请进========小程序开发工具浸警告
- 当前 Bug 的表现(可附上截图) [图片] - 预期表现 查看了下页面的渲染 发现先获取到数据 页面渲染时一直报警告, - 复现路径 - 提供一个最简复现 Demo
2018-10-30 - 开发工具光标问题
有时候打开开发工具鼠标点过的位置都会出现光标,输入的字符会在所有光标的位置显示,也不能删除.麻烦官方看一下什么原因 ,因为这个问题 代码都乱了 就和Sublime 按住Ctrl 的作用是一样的
2018-08-10 - picker组件 省市区三级联动 custom-item
- 需求的场景描述(希望解决的问题) - 希望提供的能力 [图片] 我想要给区县上面加一个全部,怎么解决? custom-item 是给三列都加上了
2018-07-28 - 开发工具 通知bug
[图片] 一条回复两条通知 搞笑吧
2018-06-13 - canvasToTempFilePath 保存的图片模糊
canvas绘制的图片保存的时候有点模糊
2018-06-12 - 小程序在真机息屏之后还可以继续执行js么?
小程序在真机息屏之后还可以继续执行js么? 仅供测试而已 目前出现的情况是安卓的息屏之后 手机会继续执行js 可以震动 但是ios息屏之后没有任何操作执行 这是为什么 setInterval(function () { wx.vibrateLong(function (res) { console.log(res) }) }, 5000)
2018-06-11 - 小程序canvas画布裁剪圆形bug
画布里如果超出一张图片 clip裁剪图片效果失效 如果只有一张图片 裁剪可以使用 超出一张就GG了 教程也没有说明 canvas: function (e) { var that = this var width = 0 var height = 0 var user_img = that.data.user_img // 用户名字 var user_name = wx.getStorageSync('userInfo').name console.log(that.data.poster) // 活动 var activity = that.data.activity wx.getSystemInfo({ success: res => { console.log(res) width = res.windowWidth height = res.windowHeight that.setData({ width: res.windowWidth, height: res.windowHeight - 50 }) } }) console.log('可使用的宽度为' + width + 'px') console.log('可使用的高度为' + height + 'px') // 宽度比例 var ratio = width / 1080 ratio = ratio.toFixed(2) // 白色背景 var white_back = 200 * ratio // 背景图片高度 var image_width = width var image_height = 320 * ratio // 用户logo var user_logo = 110 * ratio var user_height = 325 * ratio var info = 409 * ratio // 标签高度 var biaoqian = 720 * ratio var biaoqian_text = 780 * ratio // 名字高度 var name_height = 410 * ratio // 活动信息 var ac_name = 990 * ratio var ac_address = 1150 * ratio var ac_time = 1310 * ratio // 二维码 var code_text = 610 * ratio var code_height = 600 * ratio var inte_height = 550 * ratio // 二维码高度 var poster_width = 300 * ratio var poster_height = 250 * ratio // 图片的自身宽高 var acti_logo_width = poster_width*0.45 var acti_logo_hei = poster_height + poster_width * 0.27 // 计算裁剪位置 var cutting_right = code_text + 10 + acti_logo_width var cutting_height = poster_height // 图片宽度 var img_width = that.data.img_width var img_height = that.data.img_height var proportion = img_height / img_width if (img_width < width) { img_width = width var img_wid = width * proportion var img_cut = img_height - 300 img_cut = img_cut / 2 var img_left = img_width - width img_left = img_left / 2 } else { var img_left = img_width - width img_left = img_left / 2 if (img_height > 300) { var img_cut = img_height - 300 img_cut = img_cut / 2 } else { var img_cut = 0 } } var ctx = wx.createCanvasContext('firstCanvas') ctx.setFillStyle('#fff') ctx.rect(0, 0, width, height) ctx.setFillStyle('#f9f9f9') ctx.fill() var code = 1140 / 939 var code_width = width - 40 ctx.drawImage(that.data.acti_logo, img_left, img_cut, width, 250, 0, 0, width, 200) ctx.drawImage('../img/canvas.png', 20, white_back, code_width, code_width * code) ctx.drawImage('../img/biaoqian.png', 20, biaoqian) ctx.fillStyle = "#333"; ctx.setFontSize(18) ctx.fillText(user_name, 40, name_height); ctx.fillStyle = "#f66925"; ctx.setFontSize(12) ctx.fillText('邀请你一起来参加这个活动', 40, inte_height); ctx.drawImage(that.data.poster, code_text + 10, poster_height, poster_width, poster_width) ctx.fillStyle = "#000"; ctx.setFontSize(14) ctx.fillText('长按识别二维码查看', code_text, code_height); ctx.fillStyle = "#fff"; ctx.setFontSize(14) ctx.fillText('活动信息', 30, biaoqian_text) ctx.fillStyle = "#000"; ctx.setFontSize(15) ctx.fillText(activity.title, 50, ac_name); ctx.fillText(activity.address, 50, ac_address); ctx.fillText(activity.start_time + '——' + activity.end_time, 50, ac_time); ctx.save() ctx.beginPath() ctx.arc(320, 300, 40, 0, 2 * Math.PI) ctx.clip() ctx.setFillStyle('#000000') ctx.fill() ctx.drawImage(that.data.acti_logo, 280, 260, 80, 80) ctx.restore() ctx.draw() }, [图片]
2018-05-04 - 开发工具 页面路径都不出来了
[图片] 这啥玩意
2018-05-02