gpt4 book ai didi

javascript - Chart.js - 找不到 Moment.js!您必须在 Chart.js 之前包含它才能使用时间刻度

转载 作者:行者123 更新时间:2023-11-29 20:52:25 25 4
gpt4 key购买 nike

我正在尝试显示一个显示过去 30 天数据的图表。该图表在我的 webpack 开发服务器上运行时有效。但是当我构建它时它失败了(npm run build)。它产生的错误是:

("Chart.js - Moment.js could not be found! You must include it before Chart.js to use the time scale. Download at https://momentjs.com")

我已经检查了我可以在 Google 上找到的所有可能的解决方案,但似乎没有一个可以解决问题。我已经按照要求包含了 moment.js,但这会引发大量新错误,其中最主要的错误是 moment.js 中未定义窗口。我还应该注意,当我检查浏览器中的元素时,此错误显示:

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://internal-server:5000/api/service_info/tt?severity=2. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing).

我认为这不是原因,因为我已成功向后端的其他 API 发出 GET 请求,并且它们不会抛出此错误。更重要的是,启用了 CORS。下面包含相关代码。

谢谢,

let ctx = document.getElementById("canvas");
this.chart = new Chart(ctx, {
type: 'line',
data: {
labels: all_dates,
datasets: [
{
data: cummulative_sums,
borderColor: '#3cba9f',
fill: false,
label: 'Failures in past 30 days'
},
{
data: comparison_cummulative_sums,
borderColor: '#ce5fc3',
fill: false,
label: 'Failures 30 days prior'
}
]
},
options: {
legend: {
display: true
},
scales: {
xAxes: [{
display: true
}],
yAxes: [{
display: true
}],
}
}
});

最佳答案

Chart.js 有以下两个版本:

独立构建

文件:

dist/Chart.js
dist/Chart.min.js

捆绑构建

文件:

dist/Chart.bundle.js
dist/Chart.bundle.min.js

独立构建不包含 moment.js,您必须包含它,但捆绑构建包含 moment.js。

添加捆绑版本将包含并修复问题:

<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.bundle.min.js"></script>

关于javascript - Chart.js - 找不到 Moment.js!您必须在 Chart.js 之前包含它才能使用时间刻度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51196855/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com