代码之家  ›  专栏  ›  技术社区  ›  Amarsh

升级react脚本会破坏这一点

  •  0
  • Amarsh  · 技术社区  · 6 年前

    下面的代码与 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

    0 回复  |  直到 6 年前