我想做这样的事情:
var Component = React.createClass({
getInitialState: function () {
return {
message: ''
}
},
statics: {
action: function (msg) {
this.setState({
message: msg
});
this.forceUpdate();
}
},
render: function () {
// ...
}
});
但我无法从静态函数访问react类的this
对象。我怎么能这样做?