【发布时间】:2018-03-11 19:07:06
【问题描述】:
当我尝试使用一个界面时,Angular 告诉我这个错误,我不知道为什么。
file: '*******/movies.component.ts'
severity: 'Error'
message: 'Type '{ title: string; id: string; }' is not assignable to type
'Movie'.
Property 'consructor' is missing in type '{ title: string; id: string; }'.'
at: '16,9'
source: 'ts'
我有这个界面:
export class Movie{
title : string;
id : string;
consructor(title : string, id: string){
this.title = title;
this.id = id;
}
}
我有这门课
export class MoviesComponent implements OnInit {
movies:Movie;
constructor(){
}
ngOnInit() {
this.movies = {title: 'ToyStory', id:'134'};
}
}
【问题讨论】: