改一下密码吧
小程序只能扫码登录是怎么回事?我注册小程序后,小程序只能管理员扫码登录。输入账号密码显示错误(账号密码是对的),这是怎么回事呢?
2021-02-04因为异步,在设置canvas宽高的时候,在this.setData的回调里面进行canvas操作,或者加一个setTimeout
自定义组件里canvas 2d生成的图片不完整?在自定义组件里使用canvas 2d,在attached生命周期给组件节点赋值宽高后,绘制完整但生成的图片不完整。 测试机型:小米10和PC 小程序里 [图片] const screen = wx.getSystemInfoSync().windowWidth / 750; function isNumber(value) { return /^-?\d+(\.\d+)?$/.test(value); } function toPx(value, baseSize) { if (typeof value === 'number') { return value } if (isNumber(value)) { return value * 1 } if (typeof value === 'string') { const reg = /(em|rpx|px|%)$/g const results = reg.exec(value); if (!value || !results) { return 0; } const unit = results[1]; value = parseFloat(value); let res = 0; if (unit === 'rpx') { res = Math.floor(value * (screen || 0.5) * 1); } else if (unit === 'px') { res = Math.floor(value * 1); } return res; } } Component({ data: { width: '', height: '', url: '', boundary: { left: 0, top: 0, width: 0, height: 0 } }, lifetimes: { attached() { this.setData({ width: '480rpx', height: '854rpx', }) const dpr = wx.getSystemInfoSync().pixelRatio const query = this.createSelectorQuery() query.select('#canvas') .fields({ node: true, size: true }) .exec((res) => { const canvas = res[0].node const ctx = canvas.getContext('2d') canvas.width = res[0].width * dpr canvas.height = res[0].height * dpr this.setData({ canvas, 'boundary.width': res[0].width, 'boundary.height': res[0].height }) ctx.scale(dpr, dpr) ctx.fillStyle = '#00B2B6' ctx.fillRect(0, 0, canvas.width, canvas.height) ctx.fillStyle = 'red' ctx.fillRect(toPx('20rpx'), toPx('20rpx'), toPx('440rpx'), toPx('600rpx')) }) setTimeout(() => { const { left, top, width, height } = this.data.boundary let destWidth = width * dpr let destHeight = height * dpr const copyArgs = { x: left, y: top, width, height, destWidth, destHeight, canvas: this.data.canvas, success: (res) => { this.triggerEvent('success', res.tempFilePath) }, } wx.canvasToTempFilePath(copyArgs) }, 200); } }, })
2020-12-18js部分写了吗
wx-open-launch-app 标签里面的内容不显示,怎么处理?<wx-open-launch-weapp id="xxx" username="gh_xxxxxxxxx" path="pages/index/index.html" @ready="btnReady" @launch="btnLaunch" @error="btnError" > <script type="text/wxtag-template"> <style> .btn { width: 300px; height: 100px; min-height: 100px; line-height: 100px; text-align: center; color: #444; font-size: 14px; display: inline-block; background: #fff100; border-radius: 100px; border: 0; padding: 0 10px; } </style> <button class="btn" >打开小程序</button> </script> </wx-open-launch-weapp>
2020-12-17https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html#onShareAppMessage-Object-object
有人嘛 分享到朋友圈的问题?怎么 通过 button 分享到朋友圈呀
2020-11-28scroll-view
请问能否指定滚动区域?现在遇到个问题,我的滚动数据中用到了cover-view这样的原生组件,因为cover-view的层级高,这样,向上滚动时,滚动数据会覆盖掉页面最上方的input组件。 所以,现在的需求是看能否指定滚动区域,比如滚动区域就设定在input输入框和页面最底部之间,这样,就能避免cover-view覆盖顶部的input组件了。 本人html这块实在不熟,希望各位老师指点。万分感谢!
2020-10-24看一下开发工具项目--》项目配置--》uploadFile合法域名里面有没有你的域名
在使用 wx.uploadFile的时候,调用接口失败?我已经添加了合法域名(使用的穿透工具),在微信开发者工具、不勾选不检验域名可以成功上传。 [图片] 但是真机调试的时候不勾选不校验域名(出现调用接口失败) [图片] 真机调试下勾选不校验域名(可以成功) [图片]
2020-09-28分包要自己拆,一般除了tabBar和公共组件、资源之类的,其他的放到分包会比较好
一直提示主包超过2M?根目录下哪些是属于主包的?,有明确区分吗?
2020-09-26序号和文字分开写
小程序不支持ol li 那么如何实现换行自动缩进的效果?想要的效果:[图片] 实际: [图片]
2020-06-03我的也有这个问题,有些机型可以,有些不行。前段时间好像都没什么问题
版本不提示更新?每次都要卸掉小程序,重新搜索才更新autoUpdate: function() { var self = this if (wx.canIUse('getUpdateManager')) { const updateManager = wx.getUpdateManager() updateManager.onCheckForUpdate(function(res) { if (res.hasUpdate) { wx.showModal({ title: '更新提示', content: '检测到新版本,是否下载新版本并重启小程序?', success: function(res) { if (res.confirm) { self.downLoadAndUpdate(updateManager) } else if (res.cancel) { wx.showModal({ title: '温馨提示', content: '本次版本更新涉及到新的功能添加,旧版本无法正常访问的哦~', showCancel: false, confirmText: "确定更新", success: function(res) { if (res.confirm) { //下载新版本,并重新应用 self.downLoadAndUpdate(updateManager) } } }) } } }) } }) } else { wx.showModal({ title: '提示', content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。' }) } }, downLoadAndUpdate: function(updateManager) { var self = this wx.showLoading(); updateManager.onUpdateReady(function() { wx.hideLoading() updateManager.applyUpdate() }) updateManager.onUpdateFailed(function() { wx.showModal({ title: '已经有新版本了哟', content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~', }) }) },
2020-03-31回显是实现了,可是地图上的位置显示的距离好像不对,不知道是不是我参数传错了
刚开发者工具提示 wx.chooseLocation 支持传入指定坐标了 文档上没有啊?刚开发者工具提示 wx.chooseLocation 支持传入指定坐标了 文档上没有啊?
2019-12-31