gpt4 book ai didi

javascript - 从 CDN 导入外部 jquery 文件时出现问题

转载 作者:行者123 更新时间:2023-12-02 20:56:13 25 4
gpt4 key购买 nike

我在尝试使用 CDN 中的外部 jquery 文件时遇到问题,据我了解,Jquery 文件应该包含在其他自定义 jquery 文件的最顶部。

我做了同样的事情,但我收到了一个错误,无论我如何更改 angular.json 文件中文件的排列,我似乎都无法摆脱它。

下面是我的设置图片和错误消息。

从 CDN 导入外部自定义 jquery 文件导致出现 Angular 错误[ [1] ]

这是我的 angular.json 设置,旨在确保 jquery 位于最顶部

   "styles": [
"src/styles.css",
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/assets/css/customcss.css"

],
"scripts": [
"./node_modules/jquery/dist/jquery.js",
"./node_modules/jquery/dist/jquery.min.js",
"./node_modules/jquery/dist/jquery.slim.min.js",
"./node_modules/popper.js/dist/umd/popper.min.js",
"./node_modules/bootstrap/dist/js/bootstrap.min.js",
"src/assets/js/custom.js"

]

这是我的 Angular index.html 页面,我在其中使用外部自定义 jquery 库

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> My site </title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<!-- custom css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.min.css">
</head>

<body>

<!-- jQuery Custom Scroller CDN -->

<script src="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.concat.min.js"></script>

<app-root></app-root>
</body>
</html>

最佳答案

您可以在 angular.json 中使用此设置

"scripts": [
"node_modules/jquery/dist/jquery.js",
"node_modules/bootstrap/dist/js/bootstrap.js",
"node_modules/datatables/media/js/jquery.dataTables.js",

不要将脚本标签添加到index.html文件

在组件 TS 文件中你可以声明并使用它

declare const $: any;

ngOnInit() {
$('#example').DataTable();
}

关于javascript - 从 CDN 导入外部 jquery 文件时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61478151/

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