我浏览了很多链接:How to reload the current route with the angular 2 router,但我没有找到适合我的解决方案。
我有编辑屏幕,通过编辑屏幕我可以添加学生,当我成功添加学生后,我应该可以在同一个屏幕上看到新添加的学生。如果我们能做到这一点,有什么办法吗?我正在使用 Angular 7。
addStudents(): void {
this.student.studentId = this.studentId;
console.log(this.student);
this.studentService.saveStudent(this.student).subscribe(response => {
console.log(response);
this.memberResponse = response;
});
this.ngOnInit();
this.router.navigate(['/student-edit', this.studentList]);
}