美文网首页
小程序判断版本库

小程序判断版本库

作者: 前端来入坑 | 来源:发表于2019-06-08 19:25 被阅读0次
    function compareVersion(v1, v2) {
      v1 = v1.split('.')
      v2 = v2.split('.')
      const len = Math.max(v1.length, v2.length)
    
      while (v1.length < len) {
        v1.push('0')
      }
      while (v2.length < len) {
        v2.push('0')
      }
    
      for (let i = 0; i < len; i++) {
        const num1 = parseInt(v1[i])
        const num2 = parseInt(v2[i])
    
        if (num1 > num2) {
          return 1
        } else if (num1 < num2) {
          return -1
        }
      }
    
      return 0
    }
    
    compareVersion('1.11.0', '1.9.9') // 1
    

    当然小程序也可通过api进行判断

    wx.canIUse('showModal.success.cancel')
    

    官网https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html

    相关文章

      网友评论

          本文标题:小程序判断版本库

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