-
Notifications
You must be signed in to change notification settings - Fork 41
关于questionnaire-item.component的ngOnChanges #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
changes 是一个 SimpleChanges 类型对象,changes 里面有 questionnaire 这个 SimpleChange 类型的子对象,注意"s"结尾的区别。 |
老师说还没注意到有没‘s’,谢谢啦。然后后来自己也debugger了一下,现在比较明白了。然后里面的github的代码存在着这么一个bug:
这段代码中,当第一次调用到ngOnChanges的时候questionnaireChange.previousValue为undefined,所以调用questionnaireChange.previousValue.state会报错,感觉原本的代码意图应该是
还有一点想请教下。changes所拥有对象的名称是根据@input来判断的?理由是OnChanges是用来在@input的值变化时调用的钩子?不知怎么理解对不对 |
恩,谢谢反馈问题。 |
想明白了。谢谢 |
github上代码
官网PAI
通过changes为SimpleChanges的一个对象实例,那么应该不具有questionnaire方法吧?表示那不大理解,像老师请教一下。
The text was updated successfully, but these errors were encountered: