1

我无法使用 Victory Library for React Components 中的 VictoryBar 绘制条形图。我正在使用我的数据库中的数据,使用 Redux 和 axios 中间件将数据带到最前面。

有效负载正在更新,但是 React 组件的状态只会变得更大。来自 1 个国家/地区的数据给出了一个对象数组 = 26。当我再次单击一个按钮时,它将对象连接到现在是 52 个对象数组。这会使图形倾斜,因为它没有刷新数据。


    import React, { Component } from 'react';
    import { connect } from 'react-redux';
    import { bindActionCreators } from 'redux';
    import { Link } from 'react-router';
    import { VictoryChart } from 'victory-chart';
    import { VictoryLine } from 'victory-line';
    import { VictoryAxis } from 'victory-axis';
    import { VictoryBar } from 'victory-bar';
    import { getWaterData } from '../actions/get_water_data';
    import CountryList from '../containers/countryList';

    // console.log('Printing the Water Data', waterData);

    var plottingData = [
      { x: '1990', y: 0 },
      { x: '1992', y: 0 },
      { x: '1994', y: 0 },
      { x: '1996', y: 0 },
      { x: '1998', y: 0 },
    ];
    var processWaterData;

    class VictoryPlots extends Component {
      constructor(props) {
        super(props);
        getWaterData();
        this.update = this.update.bind(this);
        this.state = {
          processed: plottingData,
          count: 2,
          countryId: 1,
          // waterData: getWaterData(),
        };

      }

      processingData() {
        processWaterData = [];

        for (var i = 0; i < this.props.waterData.length; i++) {
          processWaterData.push({x: this.props.waterData[i].year, y: this.props.waterData[i].value });
        }

        // return processWaterData;
        this.setState({ processed: processWaterData}, function() {
          console.log("SET State", this.state.processed);
        });

      }

      // data= { this.state.data } />
      // this.props.getWaterData();

      onInputChange(pCountry) {
        this.setState({ processed: [{x:'1990', y: 100}] });
        this.setState({countryId: pCountry}, function() {
          console.log("countryID: ", this.state.countryId);
        });

      }

      render() {
        return (
          <div>

            <div>
              <input value = { this.state.countryId }
              onChange = { event => this.onInputChange(event.target.value)} />
            </div>

          <Link to="/">Main</Link>

          <button onClick = { this.processingData.bind(this) } >
          Plot Graph
          </button>

          <button onClick = { () => { this.props.getWaterData(this.state.countryId);}}>
          Water Data
          </button>


          <VictoryChart >
            <VictoryBar
              data = { this.state.processed }
              dataAttributes= {[
              {fill: "cornflowerblue"}
              ]}
              />
          </VictoryChart>
        </div>
        );

      }
    }; // End of Component

    function mapStateToProps({ waterData }) {
      // console.log('WATER STATE:', { waterData });
      return { waterData };
    }

    function mapDispatchToProps(dispatch) {
      return bindActionCreators({ getWaterData: getWaterData }, dispatch);
    }

    export default connect(mapStateToProps, mapDispatchToProps)(VictoryPlots);

VictoryBar:React 的 VictoryBar 图表

我不确定如何更新图表的状态,以便在更新输入框中的输入时更新图表。我this.state.processed用来更新VictoryBar. this.props.waterData是从 Redux Promise 收到的数据,它会返回每个国家/地区的正确数据,但是this.state.waterData每次我单击 Plot Graph 时,它都会连接到 . 每次单击 Plot Graph 时,我都希望它生成一个新图。


那是我的错误,我已经解决了这个问题,并尝试了多种方法来在单击 Plot Graph 按钮时更新组件的状态。为了更清楚起见,我将粘贴我的动作减速器,也许是我在这里尝试完成的屏幕截图。

动作减速器 (get_water_data.js)

    import axios from 'axios';

    // Send action to server
    export const GET_WATER_DATA = 'GET_WATER_DATA';

    export function getWaterData(pCountryId) {
      // console.log('Calling Water Data Function');

      const url = '//localhost:3001/api/statistics/' + pCountryId;
      // console.log(url);
      const request = axios.get(url);

      // console.log('PROMISE:', request.data);

      return {
        type: GET_WATER_DATA,
        payload: request,
      };
    }

更新了有效的代码,但是我正在改变数组并且我正在使用拼接,这不是在屏幕上呈现新数据的正确方法,每次我单击 Plot Graph。我希望以正确的方式实现这一点,但我认为我不知道如何。

    processingData() {
      var processWaterData = []

      for (var i = 0; i < this.props.waterData.length; i++) {
        processWaterData.push({x: this.props.waterData[i].year, y: this.props.waterData[i].value });
      }

      this.setState({ processed: processWaterData}, function() {
        // console.log("processed info after: ", this.props.waterData);
        if (this.props.waterData.length > 1) {
          // console.log("Length of the waterData:", this.props.waterData.length);
          this.props.waterData.splice(0, this.props.waterData.length);
        }
      });
    }

Victory 条形图显示各国水资源得到改善

4

1 回答 1

1

看起来像一个简单的错字:

// return processWaterData;
    this.setState({ processed: processed}, function() {

应该:

// return processWaterData;
    this.setState({ processed: processWaterData}, function() {
于 2016-02-19T01:17:19.130 回答