最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to access object properties in Angular 2 http rxjs catch function with (this) - Stack Overflow

programmeradmin1浏览0评论

Using the new http service in angular 2, I'd like do more with my errors than just throwing errors in the console. Unfortunately, I can't seem to access my object properties from within the catch callback function.

My http service call:

return this.http.get(this.apiUrl, options)
            .map(this.extractData, this)
            .catch(this.handleError)

My handleError callback fn:

handleError (error) {
  console.log(this)//undefined!
  if(error.status === 401){
    this.router.navigate(['/login'])//because `this` is undefined, this does not work
  }
  ...
}

According to rxjs docs, catch doesn't support a second thisArg argument, which is very useful in the map function:

extractData(res) {
  console.log(this)//returns the instance of my service class, which is what I want
  this.someFunctionInMyService()//works great! In fact, I could call this.router.navigate if I wanted.
  return res.json()
}

So how can I call or use a property of my service from within the handleError callback?

Using the new http service in angular 2, I'd like do more with my errors than just throwing errors in the console. Unfortunately, I can't seem to access my object properties from within the catch callback function.

My http service call:

return this.http.get(this.apiUrl, options)
            .map(this.extractData, this)
            .catch(this.handleError)

My handleError callback fn:

handleError (error) {
  console.log(this)//undefined!
  if(error.status === 401){
    this.router.navigate(['/login'])//because `this` is undefined, this does not work
  }
  ...
}

According to rxjs docs, catch doesn't support a second thisArg argument, which is very useful in the map function:

extractData(res) {
  console.log(this)//returns the instance of my service class, which is what I want
  this.someFunctionInMyService()//works great! In fact, I could call this.router.navigate if I wanted.
  return res.json()
}

So how can I call or use a property of my service from within the handleError callback?

Share Improve this question edited Nov 18, 2018 at 16:25 Nitsan Baleli 5,4683 gold badges34 silver badges53 bronze badges asked May 13, 2016 at 14:12 JoaoJoao 2,7462 gold badges26 silver badges36 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 16

Your problem is that you reference a function directily so you lose its context (the this) at execution.

To prevent from this, you need to wrap your method:

return this.http.get(this.apiUrl, options)
        .map(this.extractData, this)
        .catch(err => {
          this.handleError(err);
        })

or leverage the bind method:

return this.http.get(this.apiUrl, options)
        .map(this.extractData, this)
        .catch(this.handleError.bind(this)

But there is drawbacks to use the second approach with TypeScript since you lose types.

See this link:

  • https://basarat.gitbooks.io/typescript/content/docs/tips/bind.html
发布评论

评论列表(0)

  1. 暂无评论