statics 對象容許你定義靜態的方法,這些靜態的方法能夠在組件類上調用。例如spa
statics
var MyComponent = React.createClass({ statics: { customMethod: function(foo) { return foo === 'bar'; } }, render: function() { } }); MyComponent.customMethod('bar'); // true