- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在检查以确保我通过 Angular 的自定义 Output() 和 EventEmitter() 从另一个组件获取某些值发送到另一个组件。它们是从我的第一个组件的 View 发送的,如下所示:
<list [results]="results"
(sendLanguage)="onLanguageReceived($event)"
(sendZipcode)="onZipcodeReceived($event)">
</list>
如果我在接收值的组件内的 Angular ngOnInit 生命周期 Hook 的函数中控制台记录这些值,我会看到成功打印到控制台的值的当前状态。看起来像这样:
ngOnInit() {
this.sortByFilters(this.language, this.zipcode);
console.log(this.sortByFilters(this.language, this.zipcode));
}
完整的 sortByFilters 函数如下所示:
sortByFilters(language, zipcode) {
this.onLanguageReceived(language);
this.onZipcodeReceived(zipcode);
console.log('sortByFilters: ' + 'lang ' + language, 'zip ' + zipcode);
}
但是因为我还需要在用户单击元素时查看这些值的状态,所以我将相同的接收函数放置在 ngOnChanges 生命周期 Hook 中:
ngOnChanges() {
this.sortByFilters(this.language, this.zipcode);
console.log(this.sortByFilters(this.language, this.zipcode));
}
但是,这并没有按预期工作。当用户单击相关 UI 时,ngOnChanges 中的函数永远不会触发,因此控制台日志在初始 OnInit 运行后永远不会发生。这不正是 ngOnChanges 设计用于的场景吗?我错过了什么吗?
最佳答案
来自文档:
Angular calls its ngOnChanges() method whenever it detects changes to input properties of the component (or directive).
https://angular.io/docs/ts/latest/guide/lifecycle-hooks.html#!#onchanges
ngOnChanges 仅发生在输入属性上,而不发生在输出属性上。
在这个例子中,我有一个输入和输出。输入更改通过 ngOnChanges 进行跟踪。该事件通过其点击事件进行跟踪:
export class StarComponent implements OnChanges {
@Input() rating: number;
starWidth: number;
@Output() ratingClicked: EventEmitter<string> =
new EventEmitter<string>();
ngOnChanges(): void {
// Convert x out of 5 starts
// to y out of 86px width
this.starWidth = this.rating * 86 / 5;
}
onClick(): void {
this.ratingClicked.emit(`The rating ${this.rating} was clicked!`);
}
}
我这里有完整的示例:https://github.com/DeborahK/Angular2-GettingStarted
关于javascript - 放置在 Angular ngOnChanges 生命周期 Hook 中时,函数未运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43688532/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!