- input password 切换后IOS不能获焦
官方文档写的password 是Boolean,用来控制是否是密码类型。可是当我设置password=‘xx’,xx为任意字符都为true,写false也为true,只有为空时才为false,这是什么原因? 还有,在iphone7上真机测试时,当为密码类型时,能触发点击事件,但是不能获焦,安卓没此问题,这是为何? 代码如下: <input class="inputText" password= '{{showPwd}}' placeholder-class='holder' placeholder="密码" bindinput="passwordInput" bindtap='test'/> <span class="iconfont icon-zhengyan" wx:if="{{showPwd}}" bindtap="changeToshow"></span> <span class="iconfont icon-biyan" wx:if="{{!showPwd}}" bindtap="changeTohide"></span> changeTohide:function(){ this.setData({ showPwd: 'true' }) }, changeToshow: function () { this.setData({ showPwd: '' }) },
2018-09-18 - onShareAppMessage title不生效
- 当前 Bug 的表现(可附上截图) 设置的title不生效 - 预期表现 设置的title生效 - 复现路径 - 提供一个最简复现 Demo 创建了一个utils.js 封装函数如下 const shareProgram = function(path) { return { title: '分享绿洲精灵给朋友!', path: '/'+path, success: function () { }, fail: function () { } } } 在其他页面调用的时候,能够分享,但是title都是默认的小程序名称,如下截图: onShareAppMessage: function () { utils.shareProgram(this.route) } [图片]
2018-08-22 - IOS input里的placeholder 被移动出对应的输入框
- 当前 Bug 的表现(可附上截图) [图片] [图片] [图片] - 预期表现 [图片] - 复现路径 - 提供一个最简复现 Demo <view class="weui-cells"> <view class="weui-cell weui-cell_input"> <view class="weui-cell__hd"> <view class="weui-label">SN序列号 <span class='label_required'>*</span> </view> </view> <view class="weui-cell__bd"> <input class="weui-input" type="text" placeholder="11-64位字母或数字" value='{{devSn}}' name="devSn" bindchange="validate" data-validator="required;devSn" /> </view> </view> 使用的是weui.wxss .weui-input { height: 2.58823529em; min-height: 2.58823529em; line-height: 2.58823529em; } 其他单位是rpx. 下面的输入框弹起来之后,就会挤上去,最上面的是手写的正则验证。 在安卓上面没有问题
2018-07-03 - WeappLog 太大,凌晨自动打印log
最近几天c盘空间急剧减小,今早来了一看只剩下20M,排查了下发现是C:\Users\test\AppData\Local\微信web开发者工具x\User Data\WeappLog 特别大,占用了66G,每个log有700多M,而且是在非使用开发者工具期间产生的,贴一段log. 个人觉得是不是应该可以设置一下大小呢,占用太大影响了电脑的正常运行。[图片] [图片]
2018-05-16