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

javascript - Using this.setState in a callback - Stack Overflow

programmeradmin4浏览0评论

I have the following code getting a twitter timeline in a react ponent:

  ponentWillMount: function() {
    twitter.get('statuses/user_timeline',
    function(error, data) {
      this.setState({tweets: data})
     });
  }

But I can't set the state there, because this isn't set to the ponent in that callback function.

How can I set the state within that callback?

n.b. console.log(data) instead of this.setState works fine, which is why I suspect the problem is with the this variable.

I have the following code getting a twitter timeline in a react ponent:

  ponentWillMount: function() {
    twitter.get('statuses/user_timeline',
    function(error, data) {
      this.setState({tweets: data})
     });
  }

But I can't set the state there, because this isn't set to the ponent in that callback function.

How can I set the state within that callback?

n.b. console.log(data) instead of this.setState works fine, which is why I suspect the problem is with the this variable.

Share Improve this question edited Dec 5, 2015 at 21:01 Jonny Buchanan 62.8k17 gold badges145 silver badges150 bronze badges asked Dec 5, 2015 at 19:00 suryanagasuryanaga 4,03212 gold badges37 silver badges49 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 7

You can set this with .bind method like this, and call twitter.get in ponentDidMount as in this example

ponentDidMount: function() {
   twitter.get('statuses/user_timeline', function(error, data) {
      this.setState({tweets: data})
   }.bind(this)); // set this that refers to you React ponent
}

Never perform ajax call in ponentWillMount.

Do it in ponentDidMount.

Also there is a scope problem, for that use what Alexander suggest (bind). Another possibility is:

ponentDidMount: function() {
    var self = this;
    twitter.get('statuses/user_timeline', function(error, data) {
        self.setState({tweets: data})
    });
}

Also more details here http://facebook.github.io/react/tips/initial-ajax.html (already underlined by klimo in ments)

There are 2 ways by putting it inside ponentDidMount, you can solve the issue :

1. Bind this scope to the function

.bind(this)

twitter.get('statuses/user_timeline', function(error, data) {
   this.setState({tweets: data})
}).bind(this);

2. Use fat arrow

=>

twitter.get('statuses/user_timeline', (error, data) => {
   this.setState({tweets: data})
});
发布评论

评论列表(0)

  1. 暂无评论