以下代码可与react-scripts@1.1.4
/* file auth.js */
class AuthService {
...
}
// export a singleton
export default slug => {
if (!this._authService) this._authService = new AuthService(slug)
return this._authService
}
我刚刚升级到react-scripts@2.1.1
,并且得到this
为undefined
。
想知道如何升级react-scripts
会改变this
的概念