这是我的代码:
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';`
constructor(private http: Http, private route: ActivatedRoute,private router: Router, private modalService: NgbModal) { }
editDocumentRow = function (documentId, modal) {
this.http.get(ConstantComponent.url + '/documentmanagerapi/Get/' + documentId).map((res: Response) => res.json()).subscribe(data => {
this.documentsRowDetails = data
this.modalService.open(modal)
this.modalService.close() // not working
})
}
我正在尝试 this.modalService.close()
在不同的功能中使用。但它甚至不能在this.modalService.open(modal)
完美运行的相同功能中工作。
我收到此错误:
this.modalService.close is not a function
任何建议这里出了什么问题?