码迷,mamicode.com
首页 > Web开发 > 详细

29.React ajax中setState

时间:2017-08-04 13:46:41      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:.ajax   事件   定义   log   success   turn   ==   class   绑定   

$.ajax({
          url: url,
          type: "POST",
          timeout : 6000000, //超时时间设置,单位毫秒
          data: JSON.stringify(json),
          contentType: "application/json; charset=utf-8",
          dataType: "json",
          success:function(d){
                    
            if(d.result==0){
                        
                 this.setState({
                  commission:d.data.commission
                 })
              }
                    
          }.bind(this)
    })

bind(this)

有时候在元素上绑定事件,像下面这样,看起来很正常,但是会报一些未定义的错误

<div onClick={this.hanldeClick}></div>

你可能需要这么操作

getInitialState: function() {
    this.handleClick = this.handle.bind(this)
    return {};
},    
constructor(props){
  super(props)
  this.handleClick = this.handleClick.bind(this)     
}

 

29.React ajax中setState

标签:.ajax   事件   定义   log   success   turn   ==   class   绑定   

原文地址:http://www.cnblogs.com/famLiu/p/7284382.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!