摘要:
全局作用域:全局作用域中的 this 指向window。 函数作用域:方法中的 this 指向调用它的对象;如果没有调用者就指向window。 构造函数里:构造函数(或者ES6+的类)中的 this 指向新生成的实例对象。 在函数中this到底取何值,是在函数真正被调用执行的时候确定的,函数定义的时 阅读全文
摘要:
In this chapter, we will understand the execution process of .NET Core and compare it with the .NET Framework. The managed execution process includes 阅读全文
摘要:
What is JWT (JSON Web Token)? JSON Web Token (JWT) is an open standard (RFC 7519) for securely transmitting information between parties as JSON object 阅读全文