У меня есть два компонента, такие как studentComponent, viewstudentcomponent
Откройте viewstudentcomponent из studentcomponent с помощью ngbmodal и передайте данные из компонента student.
Но значения не обязательны в компоненте viewstudent. Значения привязываются при открытии модального вида из самого viewstudentcomponent.
Мой код:
openstudentUser(data) {
const modalRef = this.modal.open(ViewStudentComponent,{centered:true});
modalRef.componentInstance.FirstName= "Lilly";
}
ViewStudentComponent:
this.studentForm = this.formbuilder.group({
FirstName: [this.FirstName, [Validators.required]],
LastName: ["", [Validators.required]
});