未捕获的ReferenceError:未定义ngx_cookie_service_1 在eval(super.service.ts:39) 在eval(super.service.ts:287) at Object ../ src / app / services / super-service / super.service.ts(main.bundle.js:624) 在 webpack_require (inline.bundle.js:55) 在eval(profile.service.ts:2) at Object ../ src / app / services / profile / profile.service.ts(main.bundle.js:608) 在 webpack_require (inline.bundle.js:55) 在eval(app.module.ts:52) at Object ../ src / app / app.module.ts(main.bundle.js:43) 在 webpack_require (inline.bundle.js:55)
我使用了  ngx-cookie-service'在我的旧项目中,一切正常。
在我的app.module中,我已经按原样导入了它。
import { CookieService } from 'ngx-cookie-service';
providers: [
CookieService,
[...]
]
并将字段添加到服务的构造函数
constructor(
protected cookieService: CookieService,
[...]
) { }
有谁知道原因是什么以及如何消除它?