create-react-app未捕获(在promise中)语法错误:意外令牌

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

[使用React中的Highcharts尝试从json动态读取数据。扔毛巾,向SO求助。

无论我将文件放在何处,都要获取“未捕获(承诺)SyntaxError:JSON中位置0的意外令牌

[网络]选项卡显示200响应。

JSON有效。

已经尝试从srcpublic文件夹中读取json。

已尝试使用带标题和不带标题的fetch。 (使用标题将200更改为404)。

标题:{'Accept':'application / json','内容类型':'应用程序/ json'}}

[console.log(response.headers.get('Content-Type'))返回text/html; charset=UTF-8

尝试过解决方案herehere

这里是组件:

Chart.js

import React, { Component } from 'react';
import HighchartsReact from 'highcharts-react-official';
import Highcharts from 'highcharts';

const endpoint = '../public/dummy.json'

export default class Chart extends Component {
  constructor(props) {
    super(props);

    this.state = {
      // To avoid unnecessary update keep all options in the state.
      chartOptions: {
        chart: {
          type: 'bar'
        },
        xAxis: {
          title: {
            text: 'X Axis'
          }
        },
        yAxis: {
          title: {
            text: 'Y Axis'
           },
          min: 0,
          max: 100
        },
        series: [
          { data: [6] }
        ],
        plotOptions: {
          series: {
            point: {
              events: {
                mouseOver: this.setHoverData.bind(this)
              }
            },
            name: 'Chart name'
          }
        }
      },
      hoverData: null
    };
  }

  setHoverData = (e) => {
    console.log(e)
    // The chart is not updated because `chartOptions` has not changed.
    this.setState({ hoverData: e.target.options.x })
  }

  updateSeries = () => {
    // The chart is updated only with new options.
    this.setState({
      chartOptions: {
        series: [
          { data: [Math.random() * 100]}
        ]
      }
    });
  }


    componentDidMount() {
      // fetch(endpoint, {
      //   headers: {
      //     'Accept': 'application/json',
      //     'Content-Type': 'application/json'
      //   }
      // })
      fetch(endpoint)         
      .then((response) => {
        response.json()
        console.log(response.headers.get('Content-Type'))
      })
      .then(data => {
        this.state.chartOptions.series[0].data = data;
        this.setState({ data: data });
      })
      // .catch(error => {
      //   console.log('Error! ', error)
      // })
    }


  render() {
    const { chartOptions, hoverData } = this.state;

    console.log('this.state: ', this.state)

    return (
      <div>
        <HighchartsReact
          highcharts={Highcharts}
          options={chartOptions}
        />
      <h3>Hovering over {hoverData}</h3>
      <button onClick={this.updateSeries.bind(this)}>Update Series</button>
      </div>
    )
  }
}

dummy.json

[
    {
        "first_name": "John",
        "amount": 10
    }, 
    {
        "fist_name": "Tim",
        "amount": 8 
    }
]

index.js

import ReactDOM from 'react-dom';
import Chart from './Chart'

ReactDOM.render(<Chart />, document.getElementById('root'));

javascript json reactjs highcharts
1个回答
0
投票

我建议在调用.json()之前先注销响应内容。您可能会发现实际上是在找回HTML文件(这将在开始时解释'

如果您使用的端点不存在,则可能是发送回404 HTML页面而不是JSON。如果您确信端点存在,请尝试在请求路径的末尾添加“ /”或在路径的末尾删除“ /”。或检查以确保dummy.json的相对路径正确。

您可以尝试仅使其./dummy.json,因为只有公用文件夹内部的内容才被您的react组件所占用,它们捆绑在链接到公用文件夹中index.html的js文件中。

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