我有afterClosed
的重定向方法。我想在每次单击“后退”按钮时调用它。
parameter.service.ts
dialogRef.afterClosed().subscribe(result => { console.log(`Dialog
result: ${result}`); // Pizza! });
dialogRef.close('Pizza!');
not-finde-component.ts
ParameterService
html
export class ParameterService {
constructor(@Inject(DOCUMENT) document: any) {
const url = document && document.location && document.location.href;
}
redirectToParameterForm(document: any) {
document.location.href = document.location.href + './login.html';
}
}
我遇到以下错误:
错误TypeError:无法读取位于以下位置的未定义属性'href' ParameterService。