admin管理员组文章数量:1345415
I have two ponents. Component A which is the parent and ponent B which is the child. Component A looks like this:
A.html
<nb-box [onCreditChange]="onCreditChange"></nb-box>
A.ts
onCreditChange($event) { console.log($event) }
The function from ponent A is transferred to B.
Component B looks like this
B.html
<div class="box">
<nb-switch (onChange)="onCreditChange($event)"></nb-switch>
</div>
B.ts (part of this ponent)
import { Component, Input, NgModule, EventEmitter, Output} from '@angular/core';
export class Box extends BoxBase {
@Output() onCreditChange: EventEmitter<any> = new EventEmitter()
}
I get an error when calling the function
core.js:6241 ERROR TypeError: ctx.onChange is not a function
Do you know how to fix it?
I have two ponents. Component A which is the parent and ponent B which is the child. Component A looks like this:
A.html
<nb-box [onCreditChange]="onCreditChange"></nb-box>
A.ts
onCreditChange($event) { console.log($event) }
The function from ponent A is transferred to B.
Component B looks like this
B.html
<div class="box">
<nb-switch (onChange)="onCreditChange($event)"></nb-switch>
</div>
B.ts (part of this ponent)
import { Component, Input, NgModule, EventEmitter, Output} from '@angular/core';
export class Box extends BoxBase {
@Output() onCreditChange: EventEmitter<any> = new EventEmitter()
}
I get an error when calling the function
core.js:6241 ERROR TypeError: ctx.onChange is not a function
Do you know how to fix it?
Share asked Sep 24, 2020 at 19:25 DoeDoe 1632 gold badges4 silver badges13 bronze badges 2- Shouldn’t this: [onCreditChange]="onCreditChange" be this: (onCreditChange)="onCreditChange" ? – MikeOne Commented Sep 24, 2020 at 19:50
- @MikeOne I changed but I get new erroe : This expression is not callable. Type 'EventEmitter<any>' has no call signatures. – Doe Commented Sep 24, 2020 at 19:55
2 Answers
Reset to default 4PARENT COMPONENT
HTML
<nb-box (onCreditChange)="onCreditChange"></nb-box>
TS
onCreditChange($event) { console.log($event) }
CHILD COMPONENT
The error start here, because Output is not a function, it's an object that allow to you to send events to the parent. You need to do a function in child an inside of that function emit with the output object.
HTML
<div class="box">
<nb-switch (onChange)="onChangeInChild($event)"></nb-switch>
</div>
TS
import { Component, Input, NgModule, EventEmitter, Output} from '@angular/core';
export class Box extends BoxBase {
@Output() onCreditChange = new EventEmitter<any>()
onChangeInChild(eventObject: any){
this.onCreditChange.emit(eventObject)
}
}
This error happend to me beacuse the function call in the template was misspelled.
本文标签: javascriptTypeError ctxonCreditChange is not a function angularStack Overflow
版权声明:本文标题:javascript - TypeError: ctx.onCreditChange is not a function angular - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743770835a2536091.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论