React - TypeError: Cannot read property 'map' of undefined

React - TypeError: Cannot read property 'map' of undefined

我正在使用 Recharts 库构建图表库。

这些是我正在处理的文件

数据夹具是charts.js

const charts = [
  {name: 'Page A', uv: 4000, pv: 2400, amt: 2400},
  {name: 'Page B', uv: 3000, pv: 1398, amt: 2210},
  {name: 'Page C', uv: 2000, pv: 9800, amt: 2290},
  {name: 'Page D', uv: 2780, pv: 3908, amt: 2000},
  {name: 'Page E', uv: 1890, pv: 4800, amt: 2181},
  {name: 'Page F', uv: 2390, pv: 3800, amt: 2500},
  {name: 'Page G', uv: 3490, pv: 4300, amt: 2100},
];

export default charts;

数据与其他数据一起正确导入我的商店

然后我有我的ChartsGrid.js错误来自

import React from 'react';
import Chart from './Chart';

export default class ChartsGrid extends React.Component{
  render() {
    return (
      <div className="grid">
        {this.props.charts.map((chart, i) => <Chart {...this.props} key={i} i={i} chart={chart} />)}
      </div>
    )
  }
};

这里我的图表组件从 recharts 库中导入模块

import React from 'react';
import { Link } from 'react-router';
import { ResponsiveContainer, LineChart, Line, XAxis, YAxis, ReferenceLine,
  ReferenceDot, Tooltip, CartesianGrid, Legend, Brush } from 'recharts';

export default class Chart extends React.Component {
  render () {
    const { chart, i} = this.props;
    return (
        <LineChart width={600} height={300} data={charts}
            margin={{top: 5, right: 30, left: 20, bottom: 5}}>
       <XAxis dataKey="name"/>
       <YAxis/>
       <CartesianGrid strokeDasharray="3 3"/>
       <Tooltip/>
       <Legend />
       <Line type="monotone" dataKey="pv" stroke="#8884d8" activeDot={{r: 8}}/>
       <Line type="monotone" dataKey="uv" stroke="#82ca9d" />
      </LineChart>
    );
  }
};

为什么会抛出这个错误 TypeError: Cannot read 属性 'map' of undefined ?实际上未定义的是什么?

使用 react dev tools 验证 this.props.charts 是否作为数组传入。

如果您想要更好的答案,请包含传递 chartsChartsGrid 的组件代码

我认为您需要调用 "ChartsGrid" 标记并在其中传递名称为 'charts' 的 属性。喜欢:

<ChartsGrid charts={}...>

我找不到你在哪里使用了 'ChartsGrid' 标签。

将 ChartsGrid.js 更改为

import React from 'react';
import Chart from './Chart';

export default class ChartsGrid extends React.Component{
  render() {
   if(this.props.charts){
     return (
       <div className="grid">
         {this.props.charts.map((chart, i) => <Chart {...this.props} key={i} i={i} chart={chart} />)}
       </div>
      )
    }
    else return(
       <div className="grid"></div>
    )
  }
};

您缺少父组件

Parent.js

import ChartsGrid from './ChartsGrid';

const charts = [
  {name: 'Page A', uv: 4000, pv: 2400, amt: 2400},
  {name: 'Page B', uv: 3000, pv: 1398, amt: 2210},
  {name: 'Page C', uv: 2000, pv: 9800, amt: 2290},
];

class ParentComponent extends React.Component{
    render(){
        return(<ChartsGrid charts={charts}/>)
    }
}

看起来您在使用 charts 数组之前没有导入 charts.js 文件。

您可以在使用 ChartsGrid 组件的地方导入 charts.js 文件,并将 charts 作为 prop 传递:

import charts from './charts'
...
<ChartsGrid charts={charts} />

或者,您可以直接在 ChartsGrid.js 中使用 charts 对象,而不是 this.props.

import charts from './charts'

export default class ChartsGrid extends React.Component{
  render() {
    return (
      <div className="grid">
        {charts.map((chart, i) => 
          <Chart {...this.props} key={i} i={i} chart={chart} />)}
      </div>
    )
  }
}

注意 charts.map 而不是 this.props.charts.map 因为 charts 直接导入到文件中而不是作为 prop 传递给组件(如第一个解决方案)。