Ant Design Pro引入Echarts 報錯Unexpected token

想要在ant design pro中引入echart,發現在網上找了很多示例直接運行不通過,可能需要更改下部分格式,比如直接引用下面鏈接中的代碼就會報錯:Unexpected token,

https://www.missshi.cn/api/view/blog/5b05226413d85b3c71000000

import React, { Component } from 'react';
// 引入 ECharts 主模塊
import echarts from 'echarts/lib/echarts';
// 引入柱狀圖
import  'echarts/lib/chart/bar';
// 引入提示框和標題組件
import 'echarts/lib/component/tooltip';
import 'echarts/lib/component/title';
class EchartsTest extends Component {
    componentDidMount() {
        // 基於準備好的dom,初始化echarts實例
        var myChart = echarts.init(document.getElementById('main'));
        // 繪製圖表
        myChart.setOption({
            title: { text: 'ECharts 入門示例' },
            tooltip: {},
            xAxis: {
                data: ["襯衫", "羊毛衫", "雪紡衫", "褲子", "高跟鞋", "襪子"]
            },
            yAxis: {},
            series: [{
                name: '銷量',
                type: 'bar',
                data: [5, 20, 36, 10, 10, 20]
            }]
        });
    }
    render() {
        return (
            <div id="main" style="{{" width:="" 400,="" height:="" 400="" }}=""></div>
        );
    }
}
export default EchartsTest;

錯誤:

解決辦法:

將下面的一行代碼進行替換:

<div id="main" style="{{" width:="" 400,="" height:="" 400="" }}="">

替換後:

<div id="main" style={{width: '80%',height:400}}></div>

運行結果:

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章