token的解码及 判断值不为空的方法

  token 的解码要使用插件:jwt-decode

  判断值不为空的方法:  

  function isEmpty(value){
      return (
        value === undefined ||
        value === null ||
        (typeof value === "object" && Object.keys(value).length === 0) ||
        (typeof value === "string" && value.trim().length === 0)
      )
    }
  var bool= isEmpty(a);

原文地址:https://www.cnblogs.com/shangjun6/p/11799823.html