- 生成画布模糊问题?
手机上微信小程序生成画布正常,再电脑端微信版生成画布,很模糊,大家有遇到这个问题吗? canvasToTempFilePath({destWidth:210*10,destHeight:168*10, canvasId: "cardCanvas",fileType:'jpg' } 这样设置了都没有 都十倍比例了,还是模糊的
2020-09-21 - 今天小程序审核怎么这么久?
今天小程序审核怎么这么久,平时基本当天就审核通过的。一个小功能迭代,老板急着要看,麻烦官方人员看下。感谢
2020-09-05 - 微信画布字体,不同手机字体不一致?
[图片][图片]不同手机,为啥画布的字体差这么多
2020-08-24 - 小程序体验版怎么无法打开?
小程序体验版怎么无法打开?
2020-08-22 - input渲染后动态更改type类型,从number更改为digit失败?
<!--index.wxml--> <view class="container"> <button bindtap="changeList">切换</button> <view class="list"> <view class="list-item" wx:for="{{list}}" wx:key="{{index}}"><input type="{{item.type}}" /></view> </view> </view> /**index.wxss**/ .list-item{ margin-top:20rpx; } .list-item input{ display: block; width: 100%; height:60rpx; line-height: 60rpx; font-size: 40rpx; border:1px solid black; } //index.js //获取应用实例 const app = getApp() Page({ data: { motto: 'Hello World', userInfo: {}, hasUserInfo: false, canIUse: wx.canIUse('button.open-type.getUserInfo'), list:[ {type:'digit',name:'测试'}, {type:'digit',name:'测试'}, {type:'number',name:'测试'}, {type:'digit',name:'测试'}, {type:'number',name:'测试'}, ] }, //事件处理函数 changeList(){ let list=this.data.list; list.forEach(tmp=>{ tmp.type='number' }) console.log(list); this.setData({ list }) }, bindViewTap: function() { wx.navigateTo({ url: '../logs/logs' }) }, onLoad: function () { if (app.globalData.userInfo) { this.setData({ userInfo: app.globalData.userInfo, hasUserInfo: true }) } else if (this.data.canIUse){ // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回 // 所以此处加入 callback 以防止这种情况 app.userInfoReadyCallback = res => { this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } } else { // 在没有 open-type=getUserInfo 版本的兼容处理 wx.getUserInfo({ success: res => { app.globalData.userInfo = res.userInfo this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } }) } }, getUserInfo: function(e) { console.log(e) app.globalData.userInfo = e.detail.userInfo this.setData({ userInfo: e.detail.userInfo, hasUserInfo: true }) } }) demo复现问题:单机按钮,将表单类型从digit转化为number,数据是渲染成功了,但是真机调试,按钮键盘还是原来的digit,没有改为number,这是为什么
2020-05-18 - 5.1节假日小程序审核会审核吗?
5.1小程序审核吗
2020-05-01 - button 组open-type="getPhoneNumber",授权过程中?
这个授权功能,有个功能是授权其它手机号,这个功能能手动关闭掉吗?
2020-04-27 - iphone 11 下拉刷新无效,有些页面可以下拉刷新?
iphone 11 下拉刷新无效,有些页面可以下拉刷新
2020-04-21 - 微信公众号模板审核被驳回?
[图片],即将要发布模板审核,听说模板审核比较严格,向提前问下这模板消息是否可以通过?
2020-04-20 - 在内河或者海上,微信的wx.getLocation() 能获取到经纬度吗?
在内河或者海上,微信的wx.getLocation() 能获取到经纬度吗?
2020-04-19