我正在尝试在我的 React 应用程序中使用引导程序,但它给了我一个Error: Bootstrap's JavaScript requires jQuery
. 我已经导入了 jquery 并尝试了其他帖子中的以下内容:
import $ from 'jquery';
window.jQuery = $;
window.$ = $;
global.jQuery = $;
但是,我仍然收到not defined
错误消息。
解决这个问题的唯一方法是把
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
进入 index.html
有没有办法导出 jquery 或让引导程序能够检测/读取它?
我通过以下方式调用我的引导程序
import bootstrap from 'bootstrap'