0

目前,我将组件呈现在 .erb 文件中,如下所示:

<%= react_component('Counter', number: @counter) %>

该组件具有使用以下功能的功能promised-xhr

push: function(operation) {

    if(operation) {
      new_number = this.state.number +1;
    } else {
      new_number = this.state.number -1;
    }

 // This call works.
 // this.setState({number: new_number})

     XHR.post("/update", {
      data: {
        count: new_number
      }
    }).then(function(response) {
   // XHR.post is successful, so I can log the response.
      console.log(response.body.number);
   // But setState does not work because of 'this'
      this.setState({number: reponse.body.number})
    })

}

this.setState({number: response.body.number)}不起作用,因为this不再是组件。我打算用它React.findDOMNode(this.refs.myComponent)来查找我的组件并触发新状态。

但是,我不知道如何使用react_componentref 将 ref 分配给我的 Counter 组件。

4

1 回答 1

1

memoizing 怎么样this,然后在回调中使用局部变量?

push: function(operation) {
  // ... 
  // Store `this` as local variable `_this`:
  var _this = this 

  XHR.post("/update", {/*...*/})
    .then(function(response) {
    // use local variable `_this`, which still refers to the component:
      _this.setState({number: reponse.body.number
    })
}

作为旁注,ref可能无济于事。调用 后getDOMNode,您将拥有一个 DOM 节点(内置浏览器),而不是 React 组件。

于 2015-07-08T20:59:23.963 回答