I got a handwritten array to fill a table in my class, now I'm getting this array's
content from a JSON on ngOnInit but it's not structured as I need.
So I'm trying to write a function to fill the table array with this new one I'm getting on ngOnInit.
The issue is that when I write code outside of a function in my TS class I get this error "Function implementation is missing or not immediately following the declaration".
Why is that and what can be done to fix this?
TS
export class MyComponent implements OnInit {
users: Object;
constructor(private tstService: MyComponentService) { this.source = new LocalDataSource(this.data) }
ngOnInit(): void {
this.tstService.getTstWithObservable()
.map(result => result.map(i => i.user.data))
.subscribe(
res => { this.users = res; }
);
}
console.log(this.users); // Here, just an example. Throws 'Function implementation is missing or not immediately following the declaration'
data = [
{
title: 'Monthly',
sdate: '01/04/1990',
edate: '30/09/1990',
},
];
source: LocalDataSource;
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…