jquery 设置 属性 错误,请帮助解决这个问题

jquery set property error, help in overcoming this please

我正在尝试使用 jquery 设置 属性 我是新手,所以我很可能会犯一个非常简单的错误,或者这可能不适合我的尝试实现

这是我尝试设置变量的查询 - click here

这是我尝试将 access_token 从响应传递给 属性 - Click here

的方法

这是我在调试代码时遇到的错误 'ncaught TypeError: Cannot read property 'ajax' of undefined'- Click here

任何人都可以给我一些关于如何克服这个问题的建议

我找到了解决问题的办法

 $.ajax(settings).done(function (response) {
        console.log(response);
        ID = response['access_token'];
        console.log(ID)
      });
   

    // if hard coded the token
    private ACCESS_TOKEN : string = ID;