如何从服务中按点击通话功能

时间:2019-01-11 14:08:33

标签: angular typescript angular6

我有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。

0 个答案:

没有答案