Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
242 views
in Technique[技术] by (71.8m points)

javascript - Unable to acess API data in React-VictoryJs

i am unable to acess API data in Victoryjs charts for some reason, the API is working correctly as if i output the data outside of the chart it shows the data but i cant get it to work inside the chart. My API is outputting data as 2 arrays inside a JSON object. Below is my code, also FYI it isnt throwing any errors.

class Main extends React.Component {
    constructor(props) {
        super(props);
        this.state = {
          data : [],
          dates: []
        };
    }
    componentDidMount() {
        axios
             .get("http://localhost:8000/api")
             .then(res => this.setState({data:res.data.chartdata, dates:res.data.labels}))
    }  
    render() {
      return (
        <div>
          <h1>Victory Tutorial</h1>
          <VictoryLine data={[{x:this.state.dates, y:this.state.data}]} />          
        </div>
      );
    }
}

export default Main;
question from:https://stackoverflow.com/questions/65948065/unable-to-acess-api-data-in-react-victoryjs

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The Data was in the wrong json format, i was serving 2 separate JSON Arrays, what i needed from the API was an array of json objects.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...