ReferenceError: window is not defined Angular Universal

ReferenceError: window is not defined Angular Universal

我正在使用 Angular 10 并尝试在我的项目中实施 SSR。

当我 运行 npm run serve:ssr 我得到以下错误

ReferenceError: window is not defined

当我用谷歌搜索时,他们建议添加 domino

下面是我的 server.ts

....
const scripts = fs.readFileSync('dist/asfc-web/browser/index.html').toString();

const window = domino.createWindow(scripts);
global['window'] = window;
global['document'] = window.document;

....

仍然出现同样的错误,请指导我如何解决这个问题。

修复很简单,

我在 global['window'] 之后导入了 AppServerModule,它起作用了

global['window'] = window;
global['document'] = window.document;

import { AppServerModule } from '../../projects/asfc-web/src/main.server';

你可以使用 Renderer2 监听这个。

import { Renderer2 } from '@angular/core';
 constructor(private renderer2: Renderer2) {
     ...
 }
this.renderer2.listen('window', 'load', event => {    
   this.innerWidth = event.currentTarget.innerWidth;
   console.log(this.innerWidth);
});

您可以创建新服务

import {Injectable} from '@angular/core';

function _window(): any {
  return window;
}

@Injectable({
  providedIn: 'root'
})
export class WindowRef {
  get nativeWindow(): any {
    return _window();
  }
}

在你想使用的地方添加构造函数:

  constructor(
    private windowRef: WindowRef
  ) {
  }

并像这样使用:

  this.windowRef.nativeWindow.scrollTo({
    top: 0,
    behavior: 'smooth'
  });

或者您可以查看平台:

  constructor(
    @Inject(PLATFORM_ID) private platformId: any,
    private windowRef: WindowRef
  ) {
  }
if (isPlatformBrowser(this.platformId)) {
  this.windowRef.nativeWindow.scrollTo({
    top: 0,
    behavior: 'smooth'
  });
}