React JSX:迭代哈希并为每个键返回JSX元素

时间:2015-04-09 09:06:01

标签: javascript reactjs react-jsx

我正在尝试遍历散列中的所有键,但是没有从循环返回输出。 console.log()按预期输出。知道为什么JSX没有返回并输出正确吗?

var DynamicForm = React.createClass({
  getInitialState: function() {
    var items = {};
    items[1] = { name: '', populate_at: '', same_as: '', 
                 autocomplete_from: '', title: '' };
    items[2] = { name: '', populate_at: '', same_as: '', 
                 autocomplete_from: '', title: '' };
    return {  items  };
  },



  render: function() {
    return (
      <div>
      // {this.state.items.map(function(object, i){
      //  ^ This worked previously when items was an array.
        { Object.keys(this.state.items).forEach(function (key) {
          console.log('key: ', key);  // Returns key: 1 and key: 2
          return (
            <div>
              <FieldName/>
              <PopulateAtCheckboxes populate_at={data.populate_at} />
            </div>
            );
        }, this)}
        <button onClick={this.newFieldEntry}>Create a new field</button>
        <button onClick={this.saveAndContinue}>Save and Continue</button>
      </div>
    );
  }

2 个答案:

答案 0 :(得分:107)

Object.keys(this.state.items).forEach(function (key) {

Array.prototype.forEach()不会返回任何内容 - 请改用.map()

Object.keys(this.state.items).map(function (key) {
  var item = this.state.items[key]
  // ...

答案 1 :(得分:4)

快捷方式是:

Object.values(this.state.items).map({
  name,
  populate_at,
  same_as,
  autocomplete_from,
  title
} => <div key={name}>
        <FieldName/>
        <PopulateAtCheckboxes populate_at={data.populate_at} />
     </div>);