这个错误通常发生在Angular 9应用中,因为在服务器端渲染(SSR)期间,没有window对象可用。这是因为服务器端没有浏览器环境。
要解决这个问题,你可以使用条件语句来检查是否存在window对象,然后再使用它。以下是一个示例解决方法:
在你的组件中,使用Platform服务来检查是否在浏览器环境中:
import { Component, OnInit, Inject, PLATFORM_ID } from '@angular/core';
import { isPlatformBrowser } from '@angular/common';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponentComponent implements OnInit {
constructor(@Inject(PLATFORM_ID) private platformId: Object) { }
ngOnInit(): void {
if (isPlatformBrowser(this.platformId)) {
// 在浏览器环境中执行代码
console.log(window.innerWidth);
}
}
}
在上面的示例中,我们使用了isPlatformBrowser
函数来检查是否在浏览器环境中。如果是,我们就可以安全地使用window对象。
确保在使用window对象之前导入isPlatformBrowser
函数,并将PLATFORM_ID注入到组件的构造函数中。
通过这种方式,你可以避免在服务器端渲染期间出现"window未定义"错误,并且在浏览器环境中仍然可以正常使用它。