有人可以帮我与data.name到输入获取的对象,这是网站形式输入的画面
这是部件的HTML的代码
<ng-template #content let-modal> <div class="modal-header"> <h4 class="modal-title">Edit Movie</h4> <button type="button" class="close" aria-label="Close" (click)="modal.dismiss('Cross click')"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form #editMovieForm="ngForm" (ngSubmit)="onSave(editMovieForm)"> <div class="form-group"> <label for="runTime">Run Time</label> <input type="text" name="runTime" id="runTime" class="form-control" [(ngModel)]="movie.runtime" > </div> <div class="form-group"> <label for="genre">Genre</label> <input type="text" name="genre" id="genre" class="form-control" [(ngModel)]="movie.genres" value="" > </div> <div class="form-group"> <label for="cast">Cast</label> <input type="text" name="cast" id="cast" class="form-control" [(ngModel)]="movie.cast" > </div> <input type="submit" class="btn btn-success" value="Save"> <button type="button" class="btn btn-danger float-right" (click)="onDelete()" ><i class="far fa-trash-alt"></i> Remove</button> </form> </div> </ng-template> <button class="btn btn-light mb-2 mr-2" (click)="openBackDropCustomClass(content)">Edit Movie</button>
这是一个分量
export class EditMovieModalComponent implements OnInit { closeResult: string; movie: any = new Object(); id: number; constructor( private modalService: NgbModal, private movieService: MovieRequestService, private flashMessage: FlashMessagesService, private http: HttpClient, private router: Router, private route: ActivatedRoute ) { this.getMovieDetails(); } openBackDropCustomClass(content) { this.modalService.open(content, {backdropClass: 'light-blue-backdrop'}); } ngOnInit() { } getMovieDetails () { // Get Id from URL this.id = this.route.snapshot.params['id']; this.movieService.getMovieDetails(this.id).subscribe(response => this.movie = response.data.movie); } onDelete () { if (confirm('Are you sure ???')) { this.movieService.deleteMovie(this.movie); this.flashMessage.show('Movie Removed Succes'); } } onSave () {} }
我无法获取cast.name的数据,因为它的对象我可怎么办呢? 以及我如何保存编辑电影到角虚拟DOM或东西吗?