angular, map: map give result to subscribe late












0















I want to build a user page with Angular.



In my service I am getting data by this code.



getUser(id: number): Observable<User> {
return this.http.get(`${this.baseUrl}/getUser.php?id=${id}`).pipe(
map((res) => {
this.user = res['data'];
return this.user;
}),
catchError(UsersService.handleError));

}


In component I am saving data into variable user. This is code.



  user: User;

constructor(
private UsersSer: UsersService,
private ActiveRout: ActivatedRoute) {
}

ngOnInit() {
this.getUser();
}

getUser() {
const id = +this.ActiveRout.snapshot.paramMap.get('id');

this.UsersSer.getUser(id).subscribe(user => {
this.user = user;
console.log(this.user);
}, (err) => {
console.log(err);
});


}



And printing in html.



<div class="main-box clearfix">
<h2>{{user.name}}</h2>

<div class="profile-status">
<i class="fa fa-check-circle"></i> {{user.status}}
</div>

<img src="../../assets/images/{{user.image}}" alt="" class="profile-img img-responsive center-block">

<div class="profile-label">
<span class="label label-danger">{{user.role}}</span>
</div>


</div>


When i run code in browser i see that data comes too late.



browser screen



I am new in stack overflow sorry if i do mistake.



Errors screenshot.



errors screen










share|improve this question

























  • Can you display the screenshot showing the error separately - it's not clear what it's showing

    – auburg
    Nov 23 '18 at 12:10











  • I was added screen.

    – Robert Aydinyan
    Nov 23 '18 at 12:17
















0















I want to build a user page with Angular.



In my service I am getting data by this code.



getUser(id: number): Observable<User> {
return this.http.get(`${this.baseUrl}/getUser.php?id=${id}`).pipe(
map((res) => {
this.user = res['data'];
return this.user;
}),
catchError(UsersService.handleError));

}


In component I am saving data into variable user. This is code.



  user: User;

constructor(
private UsersSer: UsersService,
private ActiveRout: ActivatedRoute) {
}

ngOnInit() {
this.getUser();
}

getUser() {
const id = +this.ActiveRout.snapshot.paramMap.get('id');

this.UsersSer.getUser(id).subscribe(user => {
this.user = user;
console.log(this.user);
}, (err) => {
console.log(err);
});


}



And printing in html.



<div class="main-box clearfix">
<h2>{{user.name}}</h2>

<div class="profile-status">
<i class="fa fa-check-circle"></i> {{user.status}}
</div>

<img src="../../assets/images/{{user.image}}" alt="" class="profile-img img-responsive center-block">

<div class="profile-label">
<span class="label label-danger">{{user.role}}</span>
</div>


</div>


When i run code in browser i see that data comes too late.



browser screen



I am new in stack overflow sorry if i do mistake.



Errors screenshot.



errors screen










share|improve this question

























  • Can you display the screenshot showing the error separately - it's not clear what it's showing

    – auburg
    Nov 23 '18 at 12:10











  • I was added screen.

    – Robert Aydinyan
    Nov 23 '18 at 12:17














0












0








0








I want to build a user page with Angular.



In my service I am getting data by this code.



getUser(id: number): Observable<User> {
return this.http.get(`${this.baseUrl}/getUser.php?id=${id}`).pipe(
map((res) => {
this.user = res['data'];
return this.user;
}),
catchError(UsersService.handleError));

}


In component I am saving data into variable user. This is code.



  user: User;

constructor(
private UsersSer: UsersService,
private ActiveRout: ActivatedRoute) {
}

ngOnInit() {
this.getUser();
}

getUser() {
const id = +this.ActiveRout.snapshot.paramMap.get('id');

this.UsersSer.getUser(id).subscribe(user => {
this.user = user;
console.log(this.user);
}, (err) => {
console.log(err);
});


}



And printing in html.



<div class="main-box clearfix">
<h2>{{user.name}}</h2>

<div class="profile-status">
<i class="fa fa-check-circle"></i> {{user.status}}
</div>

<img src="../../assets/images/{{user.image}}" alt="" class="profile-img img-responsive center-block">

<div class="profile-label">
<span class="label label-danger">{{user.role}}</span>
</div>


</div>


When i run code in browser i see that data comes too late.



browser screen



I am new in stack overflow sorry if i do mistake.



Errors screenshot.



errors screen










share|improve this question
















I want to build a user page with Angular.



In my service I am getting data by this code.



getUser(id: number): Observable<User> {
return this.http.get(`${this.baseUrl}/getUser.php?id=${id}`).pipe(
map((res) => {
this.user = res['data'];
return this.user;
}),
catchError(UsersService.handleError));

}


In component I am saving data into variable user. This is code.



  user: User;

constructor(
private UsersSer: UsersService,
private ActiveRout: ActivatedRoute) {
}

ngOnInit() {
this.getUser();
}

getUser() {
const id = +this.ActiveRout.snapshot.paramMap.get('id');

this.UsersSer.getUser(id).subscribe(user => {
this.user = user;
console.log(this.user);
}, (err) => {
console.log(err);
});


}



And printing in html.



<div class="main-box clearfix">
<h2>{{user.name}}</h2>

<div class="profile-status">
<i class="fa fa-check-circle"></i> {{user.status}}
</div>

<img src="../../assets/images/{{user.image}}" alt="" class="profile-img img-responsive center-block">

<div class="profile-label">
<span class="label label-danger">{{user.role}}</span>
</div>


</div>


When i run code in browser i see that data comes too late.



browser screen



I am new in stack overflow sorry if i do mistake.



Errors screenshot.



errors screen







angular7






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 '18 at 12:16







Robert Aydinyan

















asked Nov 23 '18 at 11:51









Robert AydinyanRobert Aydinyan

56




56













  • Can you display the screenshot showing the error separately - it's not clear what it's showing

    – auburg
    Nov 23 '18 at 12:10











  • I was added screen.

    – Robert Aydinyan
    Nov 23 '18 at 12:17



















  • Can you display the screenshot showing the error separately - it's not clear what it's showing

    – auburg
    Nov 23 '18 at 12:10











  • I was added screen.

    – Robert Aydinyan
    Nov 23 '18 at 12:17

















Can you display the screenshot showing the error separately - it's not clear what it's showing

– auburg
Nov 23 '18 at 12:10





Can you display the screenshot showing the error separately - it's not clear what it's showing

– auburg
Nov 23 '18 at 12:10













I was added screen.

– Robert Aydinyan
Nov 23 '18 at 12:17





I was added screen.

– Robert Aydinyan
Nov 23 '18 at 12:17












1 Answer
1






active

oldest

votes


















0














Have an ngif testing that user isn't undefined so you're not binding to it before it's loaded:



 <div class="main-box clearfix">
<div *ngIf="user != undefined">
<h2>{{user.name}}</h2>

<div class="profile-status">
<i class="fa fa-check-circle"></i> {{user.status}}
</div>

<img src="../../assets/images/{{user.image}}" alt="" class="profile-img img-responsive center-block">

<div class="profile-label">
<span class="label label-danger">{{user.role}}</span>
</div>

</div>
</div>





share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53446194%2fangular-map-map-give-result-to-subscribe-late%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Have an ngif testing that user isn't undefined so you're not binding to it before it's loaded:



     <div class="main-box clearfix">
    <div *ngIf="user != undefined">
    <h2>{{user.name}}</h2>

    <div class="profile-status">
    <i class="fa fa-check-circle"></i> {{user.status}}
    </div>

    <img src="../../assets/images/{{user.image}}" alt="" class="profile-img img-responsive center-block">

    <div class="profile-label">
    <span class="label label-danger">{{user.role}}</span>
    </div>

    </div>
    </div>





    share|improve this answer




























      0














      Have an ngif testing that user isn't undefined so you're not binding to it before it's loaded:



       <div class="main-box clearfix">
      <div *ngIf="user != undefined">
      <h2>{{user.name}}</h2>

      <div class="profile-status">
      <i class="fa fa-check-circle"></i> {{user.status}}
      </div>

      <img src="../../assets/images/{{user.image}}" alt="" class="profile-img img-responsive center-block">

      <div class="profile-label">
      <span class="label label-danger">{{user.role}}</span>
      </div>

      </div>
      </div>





      share|improve this answer


























        0












        0








        0







        Have an ngif testing that user isn't undefined so you're not binding to it before it's loaded:



         <div class="main-box clearfix">
        <div *ngIf="user != undefined">
        <h2>{{user.name}}</h2>

        <div class="profile-status">
        <i class="fa fa-check-circle"></i> {{user.status}}
        </div>

        <img src="../../assets/images/{{user.image}}" alt="" class="profile-img img-responsive center-block">

        <div class="profile-label">
        <span class="label label-danger">{{user.role}}</span>
        </div>

        </div>
        </div>





        share|improve this answer













        Have an ngif testing that user isn't undefined so you're not binding to it before it's loaded:



         <div class="main-box clearfix">
        <div *ngIf="user != undefined">
        <h2>{{user.name}}</h2>

        <div class="profile-status">
        <i class="fa fa-check-circle"></i> {{user.status}}
        </div>

        <img src="../../assets/images/{{user.image}}" alt="" class="profile-img img-responsive center-block">

        <div class="profile-label">
        <span class="label label-danger">{{user.role}}</span>
        </div>

        </div>
        </div>






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 23 '18 at 13:41









        auburgauburg

        716414




        716414
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53446194%2fangular-map-map-give-result-to-subscribe-late%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            這個網誌中的熱門文章

            Tangent Lines Diagram Along Smooth Curve

            Yusuf al-Mu'taman ibn Hud

            Zucchini