在React.js中将密钥传递给子项

时间:2015-05-26 17:59:16

标签: javascript properties reactjs

我正在浏览tutsplus的反应教程,这个教程有点陈旧,代码并不像最初编写的那样工作。我实际上对此完全没问题,因为它迫使我更加独立地学习,但是我花了一些时间来解决一个我无法弄清楚的错误。该错误包括无法传递对象密钥,这会阻止我的程序更新正确对象的状态。

如果你想运行这段代码并在实际操作中看到它,那么首先是repo:https://github.com/camerow/react-voteit

我有一个看起来像这样的子组件:

var FeedItem = React.createClass({

  vote: function(newCount) {
    console.log("Voting on: ", this.props, " which should have a key associated.");

    this.props.onVote({
      key: this.props.key,
      title: this.props.title,
      description: this.props.desc,
      voteCount: newCount
    });
  },

  voteUp: function() {
    var count = parseInt(this.props.voteCount, 10);
    var newCount = count + 1;
    this.vote(newCount);
  },

  voteDown: function() {
    var count = parseInt(this.props.voteCount, 10);
    var newCount = count - 1;
    this.vote(newCount);
  },

  render: function() {
    var positiveNegativeClassName = this.props.voteCount >= 0 ?
                                    'badge badge-success' :
                                    'badge badge-danger';
    return (
      <li key={this.props.key} className="list-group-item">
        <span className={positiveNegativeClassName}>{this.props.voteCount}</span>
        <h4>{this.props.title}</h4>
        <span>{this.props.desc}</span>
        <span className="pull-right">
          <button id="up" className="btn btn-sm btn-primary" onClick={this.voteUp}>&uarr;</button>
          <button id="down" className="btn btn-sm btn-primary" onClick={this.voteDown}>&darr;</button>
        </span>
      </li>
    );
  }

});

现在当有人点击投票按钮时,FeedItem.vote()方法的所需行为是将对象发送到主Feed组件:

var FeedList = React.createClass({

  render: function() {
    var feedItems = this.props.items;

    return (
      <div className="container">
        <ul className="list-group">

          {feedItems.map(function(item) {
            return <FeedItem key={item.key}
                             title={item.title}
                             desc={item.description}
                             voteCount={item.voteCount}
                             onVote={this.props.onVote} />
          }.bind(this))}
        </ul>
      </div>
    );
  }

});

哪个应该通过父组件的onVote函数传递该键:

var Feed = React.createClass({

  getInitialState: function () {
    var FEED_ITEMS = [
      {
        key: 1,
        title: 'JavaScript is fun',
        description: 'Lexical scoping FTW',
        voteCount: 34
      }, {
        key: 2,
        title: 'Realtime data!',
        description: 'Firebase is cool',
        voteCount: 49
      }, {
        key: 3,
        title: 'Coffee makes you awake',
        description: 'Drink responsibly',
        voteCount: 15
      }
    ];
    return {
      items: FEED_ITEMS,
      formDisplayed: false
    }
  },

  onToggleForm: function () {
    this.setState({
      formDisplayed: !this.state.formDisplayed
    });
  },

  onNewItem: function (newItem) {
    var newItems = this.state.items.concat([newItem]);
    // console.log("Creating these items: ", newItems);
    this.setState({
      items: newItems,
      formDisplayed: false,
      key: this.state.items.length
    });
  },

  onVote: function (newItem) {
    // console.log(item);

    var items = _.uniq(this.state.items);
    var index = _.findIndex(items, function (feedItems) {
      // Not getting the correct index.
      console.log("Does ", feedItems.key, " === ", newItem.key, "?");
      return feedItems.key === newItem.key;
    });
    var oldObj = items[index];
    var newItems = _.pull(items, oldObj);
    var newItems = this.state.items.concat([newItem]);
    // newItems.push(item);
    this.setState({
      items: newItems
    });
  },

  render: function () {
    return (
      <div>
        <div className="container">
          <ShowAddButton displayed={this.state.formDisplayed} onToggleForm={this.onToggleForm}/>
        </div>
        <FeedForm displayed={this.state.formDisplayed} onNewItem={this.onNewItem}/>
        <br />
        <br />
        <FeedList items={this.state.items} onVote={this.onVote}/>
      </div>
    );
  }

});

我的逻辑依赖于能够协调onVote函数中的键,但是关键道具没有被正确传递。所以我的问题是,如何通过这种“单向流动”传递密钥。到我的父组件?

注意:随意指出其他问题或更好的设计决策,或绝对的愚蠢。或者甚至我提出了错误的问题。

期待对这个酷炫框架的探索。

1 个答案:

答案 0 :(得分:40)

The key prop has a special meaning in React。它不作为prop传递给组件,但React使用它来帮助集合的协调。如果你知道d3,它的工作方式与selection.data()的关键功能类似。它允许React将前一个树的元素与下一个树的元素相关联。

你有一个key是好的(如果你传递一个元素数组就需要一个),但如果你想将该值传递给组件,你应该另一个道具:

<FeedItem key={item.key} id={item.key} ... />

(并访问组件内的this.props.id)。