0
我用angular2 NGX-cookie來獲取Cookie,但我得到了這個問題...angular2 NGX cookie的參考了問題
Exception: Call to Node module failed with error: ReferenceError: document is not defined
,這是我的構造函數注入
constructor(private cookie:CookieService) {
this.cookie.get(".AspNetCore.Identity.Application");
}
我怎麼能解決這個問題?
你在構建項目或運行時遇到這個錯誤嗎? –
它在運行時... –
野生猜測在這裏,但也許嘗試將您的調用移動到'this.cookie.get()'到'ngOnInit'方法。一般來說,你應該避免在你的構造函數中有可能失敗的邏輯。如果你的組件有一個'ngOnInit'方法,Angular會在你的組件初始化完成後觸發它。 –