1.在小程序中用v-for 出现警告
- 需要加上wx:key 为了规范,给key值指定为循环下标
2.使用picker时间组件时设置时间限制为今天的时候,使用Date.toLocalTimeString()的时候在安卓手机上不生效
- 解决方法:
var date=new Date();
date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate()
3.在ios上input框为英文输入法的时候,首字母大写
解决方法: <input autocapitalize="off" autocorrect="off" />
4.在使用wx.swithTab跳转到tabbar页面的时候,页面不刷新。
解决方法 : 使用wx.reLaunch 关闭所有页面,打开到应用内的某个页面
网友评论