Quantcast
Channel: Ionic Forum - Latest topics
Viewing all articles
Browse latest Browse all 70429

Using observables like resolve: process data in service

$
0
0

@jack2 wrote:

I am trying to figure out observables right now, and I have a simple problem. How do I process data within my User Service and pass data to my login component? For example, I would like to save a token in local storage etc. If I include .subscribe in my User Service after .map, then I get an error when I use .subscribe in my login component.

In my User Service:

  login(username, password) {
    let headers = new Headers({ 'Content-Type': 'application/json' });
    let options = new RequestOptions({ headers: headers });
    return this.http.post(authUrl,JSON.stringify({username:username, password:password}),options)
      .map(res => res.json())
      // process tokens etc here
  }

In my login component:

  login(){
    this.userData.login(this.credentials.username, this.credentials.password)
      .subscribe(
        data => this.nav.push(TabsPage, {}),
        err => console.log("error", err)
      )
  }

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 70429

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>