11

我有使用 Angular 路由器的 Angular 4 SPA 应用程序。我想要使​​用 Bootstrap 4 在新对话框中打开组件的超链接。我已经知道如何从函数中打开模式对话框。

但是如何使用超链接打开它?

<a [routerLink]="['/login']">Login</a>

我想保留我当前的组件,只在它前面显示模态对话框。

另一个问题 - 是否有可能以编程方式做到这一点?这样我就可以

this.router.navigate(['/login']);

并且登录模式对话框显示在当前组件上?

有什么建议么?

4

2 回答 2

11

我最好的猜测是您可能想要订阅激活的路由并更改路由中的参数以触发模式。

import { ActivatedRoute, Params } from '@angular/router';
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'cmp1',
  templateUrl: './cmp1.component.html',
  styleUrls: ['./cmp1.component.css'],
})
export class Cmp1 implements OnInit {

    constructor(private activatedRoute: ActivatedRoute) {
    }

    ngOnInit() {
        this.activatedRoute.params.subscribe(params => {
            if (params["modal"] == 'true') {
                // Launch Modal here
            }
        });
    }
}

我相信你会有一个看起来像这样的链接: <a [routerLink]="['/yourroute', {modal: 'true'}]">

更好的例子可以在这里找到:Route Blog

于 2017-06-16T19:09:40.633 回答
3

您也可以使用路径而不是使用查询参数的上述答案来执行此操作。这两个选项都在这里详细讨论:

https://medium.com/ngconf/routing-to-angular-material-dialogs-c3fb7231c177

TL;博士

创建一个仅在创建时打开模态的虚拟组件:

@Component({
  template: ''
})
export class LoginEntryComponent {
  constructor(public dialog: MatDialog, private router: Router,
    private route: ActivatedRoute) {
    this.openDialog();
  }
  openDialog(): void {
    const dialogRef = this.dialog.open(LoginComponent);
    dialogRef.afterClosed().subscribe(result => {
      this.router.navigate(['../'], { relativeTo: this.route });
    });
  }
}

然后将虚拟组件添加到您的路线中:

RouterModule.forRoot([
{
  path: 'home',
  component: BackgroundComponentForModal,
  children: [
    {
      path: 'dialog',
      component: LoginEntryComponent
    }
  ]
},
{ path: '**', redirectTo: 'home' }

])

于 2019-02-21T03:31:07.387 回答