Answer the question
In order to leave comments, you need to log in
How to display the data of a specific user?
There are two such models:
export class User{
constructor(
public user_id?:number,
public name?: string,
public date: Date,
public email?: string
) { }
}
export class Note{
constructor(
public note_id?:number,
public n_users_id?: number,
public note_text?: string,
public years?: number
) { }
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question