Angular2 ng-bootstrap模块在组件中关闭

时间:2017-02-06 13:34:27

标签: angular modal-dialog ng-bootstrap

当输入正常时,我将通过保存关闭组件中的引导模式。 我正在使用angular v2.4.1和ng-bootstrap 1.0.0-alpha.19

我尝试了this解决方案,但我收到了以下错误:

  

没有ViewContainerRef的提供商

我尝试将ViewContainerRef添加到我的module.ts但是我收到以下错误:

  

类型'typeof ViewContainerRef'不能分配给'Provider'

这是我的组件中的代码:

import { Component } from '@angular/core';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';

@Component({
    selector: '[add-name]',
    templateUrl: '../add-name.html'
})

export class MyComponent {   
   public errorMessage: string = '';

   constructor(public modalActive: NgbActiveModal) {}

   public saveNewStuff(name: string) {
        this.errorMessage = '';

        if (name === '' || name === undefined) {
            this.errorMessage = 'some message';
        } else if (this.errorMessage === '') {
            this.modalActive.close();
        }
    }
}

我还尝试使用NgbModalRef之类的

  constructor(public modalRef: NgbModalRef) {}

 public closeModal() {
    this.modalRef.close();
    this.modalRef.dismiss();
}

但这根本不起作用。我甚至没有收到错误消息。

2 个答案:

答案 0 :(得分:10)

你必须保存对openend模态窗口的引用,以便稍后关闭它,如:

public mr: NgbModalRef;
...
public openModal(content: string) {
    this.mr = this.modalService.open(content);
}
...
public closeModal() {
   this.mr.close();
}

答案 1 :(得分:-1)

在角度2中使用bootstrap模态弹出:

在Html中:只需复制并粘贴bootstrap模式弹出代码。

在Ts档案中:

import {Component} from 'angular2/core';

@Component({
    selector: 'mymodal',
    templateUrl: 'html page url'
})
export class ModalComp {
}

然后,您可以通过导入TS文件在任何html视图中使用此组件。

import {ModalComp} from '/your component location';

在视图中:

<mymodal></mymodal>