У меня есть два компонента в угловом проекте.
Вот код для обоих:
app.component.ts:
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
msg() {
console.log('my message');
}
}
app.component.html:
<app-child [message]="msg()"></app-child>
child.component.ts:
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-child',
templateUrl: './child.component.html',
styleUrls: ['./child.component.css']
})
export class ChildComponent implements OnInit {
@Input() message: string;
constructor() {}
ngOnInit() {
}
}
child.component.html
{{ message }}
Как видите, msg () выведет сообщение на консоль.
Проблема в том, что сообщение консоли повторяется4 раза, а не 1
Как я могу это исправить, чтобы просто запустить msg () один раз?