美文网首页
小程序问题(BOSS)

小程序问题(BOSS)

作者: 想成为大牛的小白 | 来源:发表于2018-11-29 11:54 被阅读0次

    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 关闭所有页面,打开到应用内的某个页面

    相关文章

      网友评论

          本文标题:小程序问题(BOSS)

          本文链接:https://www.haomeiwen.com/subject/ehxgvftx.html