How to handle JWT.exp time?
本问题已经有最佳答案,请猛点这里访问。
1 2 3 4 | console.log('DEBUG::+jwtDecode(token).exp', +jwtDecode(token).exp); //1534820211 console.log('DEBUG::try', new Date(+jwtDecode(token).exp).toISOString()); //DEBUG::try 1970-01-18T18:20:20.211Z |
我有一个值为
但是当我在jwt.io上解码相同的令牌,并且鼠标悬停在
1 | moment(jwtDecode(token).exp).format(); |
你拥有的价值是纪元的秒数。
JavaScript
1 2 | var exp = 1534820211 * 1000; console.log(new Date(exp)); |