admin管理员组文章数量:1350800
TypeScript shows me below erros in appponent.ts:
Argument of type '(events: Event[]) => void' is not assignable to parameter of type '(value: Event[]) => void'.
Types of parameters 'events' and 'value' are inpatible.
Type 'Event[]' is not assignable to type 'import("/home/src/app/models/event.interface").Event[]'.
Type 'Event' is missing the following properties from type 'Event': _id, name, date
Here is my code:
event.interface.ts
export interface Event{
_id: string;
name: string;
date: Date;
}
app.service.ts
getEvents(): Observable<Event[]> {
return this.http.get<Event[]>('www.example/your-events')
}
appponent.ts
ngOnInit() {
this.appService.getEvents().subscribe(
(events: Event[]) => {
this.promotersEvents = events;
}
)
}
What is wrong with my code? Thanks for advice!
TypeScript shows me below erros in app.ponent.ts:
Argument of type '(events: Event[]) => void' is not assignable to parameter of type '(value: Event[]) => void'.
Types of parameters 'events' and 'value' are inpatible.
Type 'Event[]' is not assignable to type 'import("/home/src/app/models/event.interface").Event[]'.
Type 'Event' is missing the following properties from type 'Event': _id, name, date
Here is my code:
event.interface.ts
export interface Event{
_id: string;
name: string;
date: Date;
}
app.service.ts
getEvents(): Observable<Event[]> {
return this.http.get<Event[]>('www.example./your-events')
}
app.ponent.ts
ngOnInit() {
this.appService.getEvents().subscribe(
(events: Event[]) => {
this.promotersEvents = events;
}
)
}
What is wrong with my code? Thanks for advice!
Share Improve this question edited Sep 30, 2021 at 21:33 Guerric P 31.9k6 gold badges58 silver badges106 bronze badges asked Feb 27, 2019 at 8:14 tymeqtymeq 491 gold badge2 silver badges5 bronze badges 1- 1 Just a wild guess that your interface overlapping with the Angular's type event, I would try to change the name of your interface – Serg.ID Commented Feb 27, 2019 at 8:19
1 Answer
Reset to default 5You probably forgot to import the Event
interface in app.service.ts
or in app.ponent.ts
and one of the Event
you are referring to is the native Javascript Event
.
If that doesn't help, try to rename the interface so it doesn't conflict with Ecmascript definition files.
本文标签: javascriptAngularArgument of type is not assignable to parameterStack Overflow
版权声明:本文标题:javascript - Angular - Argument of type is not assignable to parameter - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743884303a2555772.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论