如何使用`React.createElement` children参数(不带jsx)

Geo*_*uer 33 reactjs

React.createElement 采用传播"儿童"参数

var d = React.DOM;

React.createElement(LabeledElement, {label: "Foo"}, 
     d.input({value: "foo"})
)
Run Code Online (Sandbox Code Playgroud)

但我找不到任何关于如何实际使用它的文档

var LabeledElement = React.createClass({
    render: function() {
        return d.label({}
            ,d.span({classNames: 'label'}, this.props.label)
            , //How to place children here? 
    }
})
Run Code Online (Sandbox Code Playgroud)

我确信这有一个非常简单的答案.

Mic*_*ley 53

通过JSX嵌套或通过第三个+参数传递给组件的子组件React.createElement在组件中显示为this.props.children:

var MyLabel = React.createClass({
  render: function() {
    return React.createElement("label", {className: "label"},
      React.createElement("span", {className: "label"}, this.props.label),
      this.props.children
    );
  }
});

var App = React.createClass({
  render: function() {
    return React.createElement(MyLabel, {label: "Here is the label prop"},
      React.createElement("div", {},
        React.createElement("input", {type: "text", value: "And here is a child"})
      )
    );
  }
});
Run Code Online (Sandbox Code Playgroud)

示例:http://jsfiddle.net/BinaryMuse/typ1f2mf/ ; docs:http://facebook.github.io/react/docs/multiple-components.html#children