gpt4 book ai didi

javascript - ChartJS v3 与 TypeScript 和 Webpack 的使用

转载 作者:行者123 更新时间:2023-12-04 03:35:50 29 4
gpt4 key购买 nike

直到 release 2.9.4 ,我将 ChartJS 与 @types/chart.js 结合使用获取 TypeScript 支持的所有类型。我使用 Webpack 和 TypeScript 的最小工作示例如下所示:
包.json:

{
"devDependencies": {
"@types/chart.js": "^2.9.31",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"chart.js": "^2.9.4"
}
}
tsconfig.json:
{
"compilerOptions": {
"esModuleInterop": true,
},
}
webpack.config.json:
module.exports = {
entry: {
main: "./main.ts",
},
module: {
rules: [
{
test: /\.ts$/,
loader: "ts-loader",
exclude: /node_modules/,
},
],
},
};
main.ts:
import Chart from "chart.js";

new Chart("chart", {
type: 'line',
data: {
labels: ['Label 1', 'Label 2', 'Label 3'],
datasets: [{
label: "Dataset 1",
data: [1, 2, 3],
}]
},
});
index.html:
<!DOCTYPE html>
<html>
<body>
<canvas id="chart"></canvas>
<script src="main.js"></script>
</body>
</html>
但是更新到 version 3.0.0之后,这不再起作用(我删除了 @types/chart.js 因为 chart.js 自该版本发布以来提供了自己的类型):
npx webpack 服务 --mode 开发
ERROR in [...]/chartjs/main.ts
./main.ts 3:4-9
[tsl] ERROR in [...]/chartjs/main.ts(3,5)
TS2351: This expression is not constructable.
Type 'typeof import("[...]/chartjs/node_modules/chart.js/types/index.esm")' has no construct signatures.
但是由于内置类 Chart实际上有一个 constructor ,我真的不明白这个问题以及如何解决它。将 ChartJS 版本 3 与 Webpack 和 TypeScript 结合使用的预期方式是什么?
在此先感谢您提供的任何提示,这些提示将我引向正确的方向!

最佳答案

Chart.js 3 是 tree-shakeable ,因此有必要导入和注册您将要使用的 Controller 、元素、比例和插件。

Please take a look at Bundlers (Webpack, Rollup, etc.) from the Chart.js documentation.

关于javascript - ChartJS v3 与 TypeScript 和 Webpack 的使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66946501/

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