使用chart.js时在react.js中使用道具传递值的问题

问题描述 投票:0回答:1

我正在使用react js并尝试将Props从我的app.js发送到chart.js文件。当我发送硬编码的值时,将正确发送值,并根据它进行绘制。但是每当我传递动态值时,就会传递值,但图表不会使用它们。

App.js

 class App extends React.Component {

  state = {
    text: "",
    credit: [{_id:1,financeCredit:"loading"}],
    debit: [{_id:1,financeDebit:"loading"}],
   }

componentDidMount(){
    fetch('/data')
    .then(res=> res.json())
    .then(res2 => {
      console.log(res2)
      this.setState({
        credit: res2
      })
    })

    fetch('/data2')
    .then(res=> res.json())
    .then(res2 => {
      console.log(res2)
      this.setState({
        debit: res2
      })
    })

}

  render(){

var lengthExpense = this.state.credit.length;
console.log(lengthExpense)

var expName = [];

for (var a = 0 ; a <= lengthExpense ; a++){

if (this.state.credit[a]){
    expName.push(this.state.credit[a].expenseName)
}

}

var expAmount = [];

for (var b = 0 ; b <= lengthExpense ; b++){
    if(this.state.credit[b])
    expAmount.push(this.state.credit[b].expenseAmount)
}

console.log(expAmount)
console.log(expName)


    return (
      <BrowserRouter>
      <div className="App">   
      <Navbar />
      <Chart  expam = {expAmount} expnam = {expName} />
      <Route exact path = "/" component = {Home} />
      </div>
      </BrowserRouter>
  );
}

}

export default App;

尽管下面的console.log()显示了我想要传递的期望值

console.log(expAmount)
console.log(expName)

我正在像这样传递这些值

<Chart  expam = {expAmount} expnam = {expName} />

在Chart.js中,尽管我获得了这些值。

Chart.js

class Chart extends Component{

    constructor(props){
        super(props);
        this.state = {
            chartData : {
                labels: this.props.expnam,
                datasets: [{
                    label: 'Expense',
                    data: this.props.expam,
                    backgroundColor:'rgba(255, 99, 132, 0.6)'
                }]
            }
        }
    }

    render(){

console.log(this.props)

        return(
            <div className = "chart">
                <div>
            <Bar id = "chart1"
            data={this.state.chartData}
            options={{ maintainAspectRatio: false, }}
            />  

            <canvas id = "chart1" height="30vw" width="10vw" ></canvas>
                </div>

            </div>
        )
    }
}

但是无法将其传递给标签和数据。代码正常运行,但是没有值,因此图表显示为空

constructor(props){
        super(props);
        this.state = {
            chartData : {
                labels: this.props.expnam,
                datasets: [{
                    label: 'Expense',
                    data: this.props.expam,
                    backgroundColor:'rgba(255, 99, 132, 0.6)'
                }]
            }
        }
    }

在此chart.js文件中,我可以看到从App.js传递的所有值。但是这些值未用于图表(条形图)。

console.log(this.props)
javascript reactjs chart.js react-props react-state
1个回答
0
投票

似乎您是在构造函数中设置数据:

constructor(props){
    super(props);
    this.state = {
        chartData : {...}
    }
}

构造函数仅在初始化对象时称为once。 (在ReactJS中,仅在第一个渲染之后调用它。)

您正在呼叫setState(),其余的似乎很好,我可以告诉。为什么不将this.state = {...}从构造函数移动到render()?由于render()会在状态更改时运行,因此setState()调用应该可以使用。

这可能不太优雅,当然可以进行改进,但是它将使您朝正确的方向开始。

© www.soinside.com 2019 - 2024. All rights reserved.