Answer the question
In order to leave comments, you need to log in
Why is the data not being updated?
Hello.
Created a service that does a set when a button is clicked
import { Injectable } from '@angular/core';
@Injectable()
export class DataService {
constructor() { }
private data;
setData(data) {
this.data = data;
}
getData() {
return this.data;
}
}
this.dataService.getData()
Answer the question
In order to leave comments, you need to log in
...
private _data: <ТИП>;
set Data(data): void {
this.data = data;
}
get Data(): <ТИП> {
return this.data;
}
...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question