Z
Z
zachfischer2018-07-10 13:50:32
Angular
zachfischer, 2018-07-10 13:50:32

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
    ) { }
}

How can I select a specific user to display only his records in the table.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question