独特"关键"渲染方法中的prop警告 - ReactJS

时间:2016-07-05 10:32:14

标签: javascript reactjs key

我的应用有一个警告说:Each child in an array or iterator should have a unique "key" prop. Check the render method of 'SortableTable'听到的是我的SortableTable文件:

import React from 'react';
import {Link} from 'react-router';
import {v4 as uuid} from 'node-uuid';

export default class SortableTable extends React.Component {
    render() {

        return (
            <table style={{width: '100%'}} className={this.props.className} id={this.props.id}>
                <thead>
                    <tr>
                        {this.props.headers.map(this.generateHeaders)}
                    </tr>
                </thead>
                <tbody>
                    {this.props.children}
                </tbody>
            </table>
        );
    }

    generateHeaders = (value) => {
        if (Object.keys(value).length === 0) return
        let sort, colspan
        if(value.sort) {

            let {query} = this.props;
            let nQuery, title, icon, colspan = 1;
            if(query.sort === value.sort && query.sortDirection === 'desc') {
                nQuery = Object.assign({}, query, {sort: value.sort, sortDirection: 'asc', page: 1})
                title = 'asc';
                icon = String.fromCharCode(0xe630)
            } else {
                nQuery = Object.assign({}, query, {sort: value.sort, sortDirection: 'desc', page: 1})
                title = 'desc';
                icon = String.fromCharCode(0xe62d)
            }
            sort = <Link to={this.props.link} query={nQuery} className="icon order active" title={title} data-icon={icon} />

        }
        let className = value.className ? value.className : ''
        if(value.colspan) {
            colspan = value.colspan
        }
        return <th className={className} colSpan={colspan}><span>{value.name}</span>{sort}</th>
    }

有人可以告诉我如何设置关键道具来解决此警告吗?

3 个答案:

答案 0 :(得分:1)

我们的想法是拥有一个具有唯一值的键属性。您可以使用index, the second argument of Array#map callback

generateHeaders = (value, index) => {
    // ...
    return <th key={index} className={className} colSpan={colspan}><span>{value.name}</span>{sort}</th>
}

或者,如果value对象具有id等唯一属性,则可以改为使用它。

答案 1 :(得分:1)

<th>返回的generateHeaders元素需要在其上设置key属性,因为您从render方法返回了一个数组。< / p>

实现此目的的最简单方法是使用索引:

generateHeaders = (value, index) => {
// ...
    return <th key={index} //...

这会使警告消失但最好使用每个value的唯一属性(如果存在)。这是因为React使用密钥来确定两个项是否相同。如果您正在使用数组索引并在数组中的某处插入新值,则索引将更改,从而导致项目被不必要地重新呈现。

答案 2 :(得分:0)

您应该将密钥插入标签:

generateHeaders = (value, index) => { ... return <th key={index} className={className} colSpan={colspan}><span>{value.name}</span>{sort}</th> }