不行吧,键盘是跟着input的onfocus和onblur的。 一定要做的话你可以自己写一个虚拟键盘。
同一页面,多个input框,能否只拉起一次键盘?一个页面,多个input框。目前问题现状:每次点击input框,键盘都会消失再显示。 问大佬们: 能否在输入框切换过程中,键盘一直保持唤起状态。 谢谢。
2019-10-17你 吧shsh变成一个对象试一下 不要用数组
在onshow()中使用setdata不生效呢?onShow: function () { let pages = getCurrentPages(), currPage = pages[pages.length - 1]; console.log(currPage.data) if(currPage.data.uid !== undefined){ console.log('uid') this.setData({ clickNumber: 0 }); console.log(this.data.clickNumber) } else if (currPage.data.type === "2"){ var shsh = new Array(); shsh['name'] = currPage.data.name shsh['mobile'] = currPage.data.mobile shsh['address'] = currPage.data.address shsh['city'] = currPage.data.city shsh['county'] = currPage.data.county shsh['province'] = currPage.data.province console.log('收货') console.log(currPage.data.mobile) this.setData({ clickNumber: 0, shsh: shsh }) console.log(shsh); }else{ console.log('其他') this.setData({ clickNumber: 0, }) } },
2019-10-16你把 Encoding 设成 ‘ ’ 试一下
小程序 request 真机调试失败,求解决方法服务器是阿里云的,Server2008 R2,IIS6。 证书是阿里云的免费证书,TLS 1.0 1.1 1.2都已经勾上了。 用postman和微信开发工具的模拟器,都能够成功访问并返回数据,但是一到真机就报错。 api接口已经设置了返回格式: HttpResponseMessage result = new HttpResponseMessage { Content = new StringContent(str, Encoding.GetEncoding("UTF-8"), "application/json") }; IOS11的手机,"request:fail response data convert to UTF8 fail" 安卓5.4的手机,返回403错误。 求大神解答。
2018-09-12