我确实了解全局范围和函数范围,但是当涉及到这段代码时,我的大脑麻木了:
this.access_token = this.postJWT(this.getJWT(), response => {
this.access_token = JSON.parse(response).access_token;
console.log(this.access_token);
// --> Access token is received, but I cannot get it out to my global scope
return this.access_token;
});
我试图选择带有箭头功能的解决方案,但是我不知道如何将“ access_token”保存到我的全局“ this”范围中。
对于你们中的某些人来说,这听起来微不足道,但这确实让我感到困惑:/