React中的Statics對象

statics 對象容許你定義靜態的方法,這些靜態的方法能夠在組件類上調用。例如spa

var MyComponent = React.createClass({
  statics: {
    customMethod: function(foo) {
      return foo === 'bar';
    }
  },
  render: function() {
  }
});

MyComponent.customMethod('bar');  // true
相關文章
相關標籤/搜索