在我的 laravel 项目中,我使用的是 adminlte 仪表板。我也在 adminlte 仪表板中使用 chartjs。Uncaught ReferenceError: Chart is not defined发生错误。我尝试了很多解决方案,但错误仍然相同。发生了什么问题以及如何解决这个问题?
我在 chartjs 文档中添加了代码示例:但这不起作用;
<canvas id="timechart" width="800px" height="400px"></canvas>
<script>
var ctx = document.getElementById('timechart').getContext('2d');
var chart = new Chart(ctx, {
// The type of chart we want to create
type: 'line',
// The data for our dataset
data: {
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
datasets: [{
label: 'My First dataset',
backgroundColor: 'rgb(255, 99, 132)',
borderColor: 'rgb(255, 99, 132)',
data: [0, 10, 5, 2, 20, 30, 45]
}]
},
// Configuration options go here
options: {}
});
</script>
在主布局中添加 chartjs:
<script type="text/javascript" src="{{ asset('js/Chart.js') }}"></script>
HUX布斯