Ошибка в смонтированном хуке: «Ошибка типа: невозможно прочитать свойство« тип »с нулевым значением» - PullRequest
0 голосов
/ 11 марта 2020

Я использую echarts для рисования Heatmap

Но выдает ошибку !!

Ошибка в смонтированном хуке: «Ошибка типа: Не удается прочитать свойство« тип » из null "

mounted() {
  this.initChart()
},

Я использую данные json отсюда: https://www.echartsjs.com/data/asset/data/hangzhou-tracks.json

Просто взял 1 данные из вышеуказанной ссылки.

<template>
  <div
    :id="id"
    :class="className"
    :style="{height:height,width:width}"
  />
</template>

<script>
import echarts from 'echarts'
import resize from '../mixins/resize'

export default {
  mixins: [resize],
  props: {
    className: {
      type: String,
      default: 'chart'
    },
    id: {
      type: String,
      default: 'newCustomerForecastChart'
    },
    width: {
      type: String,
      default: '200px'
    },
    height: {
      type: String,
      default: '200px'
    }
  },
  data() {
    return {
      chart: null,
      dataArr: [
        {
            "coord":
            [
                120.14322240845,
                30.236064370321
            ],
            "elevation": 21
        },
        {
            "coord":
            [
                120.14280555506,
                30.23633761213
            ],
            "elevation": 5
        }
      ]
    }
  },
  mounted() {   
     this.initChart()
  },
  beforeDestroy() {
    if (!this.chart) {
      return
    }
    this.chart.dispose()
    this.chart = null
  },
  methods: {
    initChart() {
      var points = [
          {
            "coord":
            [
                120.14322240845,
                30.236064370321
            ],
            "elevation": 21
        },
        {
            "coord":
            [
                120.14280555506,
                30.23633761213
            ],
            "elevation": 5
        }
      ]
      this.chart = echarts.init(document.getElementById(this.id))
      var colors = ['#5793f3', '#d14a61', '#675bba'];

      this.chart.setOption({
        animation: false,
        bmap: {
            center: [120.13066322374, 30.240018034923],
            zoom: 14,
            roam: true
        },
        visualMap: {
            show: false,
            top: 'top',
            min: 0,
            max: 5,
            seriesIndex: 0,
            calculable: true,
            inRange: {
                color: ['blue', 'blue', 'green', 'yellow', 'red']
            }
        },
        series: [{
            type: 'heatmap',
            coordinateSystem: 'bmap',
            data: points,
            pointSize: 5,
            blurSize: 6
        }]
    });

    var bmap = myChart.getModel().getComponent('bmap').getBMap();
    bmap.addControl(new BMap.MapTypeControl());
    }
  }
}
</script>

В чем проблема на самом деле?

...