Угловая переменная компонента не обновляется в представлении, если метод компонента генерирует выходное событие. Переменная в фокусе: «qMode»,
Функция с генерированием выходного события (НЕ ОБНОВЛЯЕТСЯ ПЕРЕМЕННОЙ)
save() {
if (this.questionForm.valid) {
this.question.type = this.questionForm.value.type;
this.question.description = this.questionForm.value.description;
this.qMode = 'view';
this.saveQuestion.emit({
index: this.index,
question: this.questionForm.value,
});
}
}
Функция без генерирования выходного события (ОБНОВЛЕНИЕ ПЕРЕМЕННОЙ)
save() {
if (this.questionForm.valid) {
this.question.type = this.questionForm.value.type;
this.question.description = this.questionForm.value.description;
this.qMode = 'view';
}
}
Здесь вы найдете код Демо ,