在 Meteor 中使用 chart.js 时出现 'Chart is not defined' 错误

Getting 'Chart is not defined' error when using chart.js in Meteor

我在我的 meteor 应用程序中使用官方 chart.js atmosphere package。我试过 运行 一个示例图表,看看我是否可以将其拉起,但是我遇到一个问题 "ReferenceError: Chart is not defined"

以下是我安装大气包和 运行 生成图表的代码的步骤。

  1. 使用 meteor add 安装包 chart:chart
  2. 在我的 HTML 中,我添加了 canvas 标签来调用带有信息的图表
  3. 在 JS 中,我添加了创建图表及其相关信息的函数

然而,当我转到该页面时,我只得到一个空的 400x400 图片,即 canvas,但图表应该在的地方没有内容。有人可以帮我弄清楚我缺少哪一步才能显示图表吗?

HTML

<template name="Home_page">
<canvas id="myChart" width="400" height="400"></canvas>
</template>

JS

import './home-page.html';


Template.Home_page.onRendered(function homePageOnRendered() {
var ctx = document.getElementById("myChart").getContext("2d");
    var myChart = new Chart(ctx, {
        type: 'bar',
        data: {
            labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
            datasets: [{
                label: '# of Votes',
                data: [12, 19, 3, 5, 2, 3],
                backgroundColor: [
                    'rgba(255, 99, 132, 0.2)',
                    'rgba(54, 162, 235, 0.2)',
                    'rgba(255, 206, 86, 0.2)',
                    'rgba(75, 192, 192, 0.2)',
                    'rgba(153, 102, 255, 0.2)',
                    'rgba(255, 159, 64, 0.2)'
                ],
                borderColor: [
                    'rgba(255,99,132,1)',
                    'rgba(54, 162, 235, 1)',
                    'rgba(255, 206, 86, 1)',
                    'rgba(75, 192, 192, 1)',
                    'rgba(153, 102, 255, 1)',
                    'rgba(255, 159, 64, 1)'
                ],
                borderWidth: 1
            }]
        },
        options: {
            scales: {
                yAxes: [{
                    ticks: {
                        beginAtZero:true
                    }
                }]
            }
        }
    });
});

好的我忘了添加

import Chart from 'chart.js' 

在我的 js 文件的顶部。那修好了。