个人案例
- 该账号已注销
开发者信息展示
开发者信息展示扫码体验
- 创建部署云函数Error: socket hang up
- 当前 Bug 的表现(可附上截图) 创建部署云函数 上传的时候 Error: socket hang up - 预期表现 - 复现路径 - 提供一个最简复现 Demo
2018-09-16 - wx.getSystemInfoSync().windowWidth宽度为 0
安卓手机 wx.getSystemInfoSync().windowWidth 获取设备宽度 为 0 iOS正常; 微信版本: 6.6.6, 6.6.7 开发版本库: 2.1.1 ``` onLoad: function (options) { var that = this; console.log(wx.getSystemInfoSync().windowWidth) that.setData({ columnWidth: (wx.getSystemInfoSync().windowWidth - 22 - 13) / 2 + 'px' }) }, ``` 手机调试打印出来 wx.getSystemInfoSync().windowWidth 是 0
2018-07-03 - input placeholde失焦设置text-align: center无效
``` <input type="text" placeholder="搜索国家或地区" placeholder-style="text-align:{{textAlign}}" placeholder-class="searchHolder" bindblur="blurSearch" bindfocus="focusSearch" bindinput='input' value='{{keyWord}}' bindconfirm="blurConfirm" focus='{{searchfocus}}' /> // 搜索输入框聚焦 focusSearch: function (e) { var that = this; that.setData({ textAlign: 'center' }) }, // 搜索输入框失焦 blurSearch: function (e) { var that = this; if (e.detail.value == '') { that.setData({ textAlign: 'center' }) } }, ``` 模拟器: v1.02.1804120 模拟器正常; ios : 微信版本 v6.6.6 android: 微信版本 v6.6.5
2018-04-19 - 新版本开发工具无法查看伪类微元素样式,如:before的样式
新版本开发工具无法查看伪类微元素样式,如:before, :after的样式, 以前版本是可以查看的
2018-02-03 - 小程序中 国际手机号码校验
小程序中 国际手机号码校验 有没有好的方法
2018-01-16 - 使用组件的时候手机扫描预览会出现错误 X5 什么的
[图片] 使用组件开发的时候,手机扫描预览出现的问题
2018-01-04 - 组件中样式问题
在模拟器上 window10 最新版64位开发工具 无法显示组件中模板的样式 win7 没问题 手机端预览没问题
2018-01-03 - scroll-view bindscroll
scroll-view 中使用 bindscroll,就是滚动时候获取 scrollTop 的值, 多个判断 , 对应去改变导航菜单 显示的样式,会有卡顿, 如: if (scrollTop < 515) { // console.log(11111111111) that.setData({ monthactiveKey: 1 }) return; } if (scrollTop > 515 && scrollTop < 1030) { // console.log(222222222) that.setData({ monthactiveKey: 2 }) return; } 页滚动的上面设置值范围的时候,对用导航显示的样式需要10s左右才会响应,很卡
2017-12-27 - map 中多个marker不显示,callout安卓机不显示,ios显示
安卓版本: 6.5.16 红米手机, map 中单个或者多个marker都不显示,callout 安卓机也不显示, 不清楚什么问题 markers: [{ id: "1", latitude: res.latitude, longitude: res.longitude, width: 40, height: 50, iconPath: "/images/location.png", title: "哪里1", callout:{ content: "这里位置1", color: "#FFFFFF", fontSize: 14, borderRadius: 5, bgColor: "#586c94", padding: 5, display: "ALWAYS" } }, { id: "2", latitude: 120.15618, longitude: 30.376068, width: 40, height: 50, iconPath: "/images/location.png", title: "哪里2", callout:{ content: "这里位置2", color: "#FFFFFF", fontSize: 14, borderRadius: 5, bgColor: "#586c94", padding: 5, display: "ALWAYS" } }, { id: "3", latitude: 120.25618, longitude: 30.376068, width: 40, height: 50, iconPath: "/images/location.png",//"/resources/location.png", title: "哪里3", callout:{ content: "这里位置3", color: "#FFFFFF", fontSize: 14, borderRadius: 5, bgColor: "#586c94", padding: 5, display: "ALWAYS" } } ]
2017-11-15 - getphonenumber:fail 用户绑定的手机需要进行验证
调用 getphonenumber 接口提示,getphonenumber:fail 用户绑定的手机需要进行验证
2017-11-06