- 体验版和真机下input组件bindinput事件无效?
微信版本号8.0.34 基础库2.7.1 <view class='btn-wrp'> <input class='name' value="{{info.loginId}}" data-type="loginId" bindinput='changeInput' placeholder="请输入手机号" /> <input class='password' value="{{info.password}}" data-type="password" bindinput='changeInput' password placeholder="请输入密码" /> <view class='tips'>小程序仅限{{xcParam.name || 'Happykids美言美语'}}机构使用</view> <button type='primary' style="background: {{xcParam.color}};" bindtap='submit'>登录</button> </view> changeInput: function (e) { console.log(222) this.data.info[e.currentTarget.dataset.type] = e.detail.value; console.log(this.data.info); },
2023-04-07 - 在IOS下顶部导航栏在打开页面后会出现两个?
[图片] 多个不同的页面都会有同样的问题,手机锁屏在打开恢复正常或者重新打开页面也可恢复正常。 [图片] app.json的配置如上
2021-06-25 - drawImage使用图片临时地址报500 (Internal Server Error)?
GET http://tmp/HPkZrTESINFNa89881c43bc52847acb2c5279da80e66.jpg 500 (Internal Server Error)(env: Windows,mp,1.05.2105170; lib: 2.10.4) 通过chooseimg获取本地图片 wx.getImageInfo({ src: that.data.uploaderList[i].url, success(res){ console.log(res) let imgpath = res.path //本地图片路径 let imgwidth = res.width //图片的宽 let imgheight = res.height //图片的高 wx.createSelectorQuery() .select('#canvas') .fields({ node: true, }) .exec(function(res){ const canvas = res[0].node const ctx = canvas.getContext('2d') ctx.width = imgwidth ctx.height = imgheight let seal = canvas.createImage(); seal.src = imgpath; seal.onload = () => { ctx.drawImage(seal,0, 0, imgwidth, imgheight);
2021-05-25 - 小程序开发设置配置aws sdk域名一直报域名不合法?
[图片]
2021-05-11 - 小程序后台管理统计用户画像性别年龄统计图显示有问题?
[图片]
2021-04-29 - 用户登陆小程序显示的头像和用户名不是自己的,大家遇到过吗?
开发环境:国内,实际使用客户群体和环境均是海外,国内登陆测试时没有问题,在海外运行一段时间后发现,有个别用户登陆到小程序后显示的头像和用户不是自己微信的头像和用户
2021-02-24 - 将登陆修改为登录,审核就不通过?
之前是审核通过,登录界面上也介绍了本小程序的功能,登录功能也有取消的按钮。只是将登陆修改为登录,审核就不通过,那之前的审核为什么可以通过呢? [图片][图片]
2021-01-07