gpt4 book ai didi

javascript - Electron 应用程序中出现 Uncaught Error : Bootstrap's JavaScript requires jQuery at bootstrap. min.js :6,

转载 作者:行者123 更新时间:2023-12-03 12:30:47 25 4
gpt4 key购买 nike

我建立了一个使用Angular框架的 Electron 应用程序。在“index.html”文件中,我加载了bootstrap和jquery。但是在使用electronic-packager构建了 Electron 应用之后。我看到这个错误。

Uncaught Error: Bootstrap's JavaScript requires jQuery
at bootstrap.min.js:6
从该问题的先前答案中,我确保首先加载jquery,然后再加载 bootstrap 。但是我仍然看到这个错误
作为引用,我附上了index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Demo App</title>
<base href="./">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
<body>
</body>
</html>
但是,如果我在浏览器中以与Web应用程序相同的方式运行,则不会看到此错误。
注意:正如您在index.html中看到的那样,我正在将CDN用于jquery和bootstrap。
任何想法或建议将不胜感激。

最佳答案

我不建议使用CDN库,而是建议在Electron上使用jQuery npm软件包。
npm安装jquery

<script>
window.$ = window.jQuery = require("jquery");
</script>

关于javascript - Electron 应用程序中出现 Uncaught Error : Bootstrap's JavaScript requires jQuery at bootstrap. min.js :6,,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63191705/

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