oauth.js26行的判断代码如下: ```javascript return !!this.data.access_token && (new Date().getTime()) < (this.data.create_at + this.data.expires_in * 1000); ``` (this.data.create_at + this.data.expires_in * 1000)这个代码在字符和数字时表现出来的结果是不一样的。