gpt4 book ai didi

javascript - Bootstrap 未在 webpack 项目中完全加载

转载 作者:太空宇宙 更新时间:2023-11-04 16:10:53 24 4
gpt4 key购买 nike

我有一个 webpack 项目,我在配置文件中添加了 Bootstrap :

module.exports = {
entry: {
app: './src/main.js',
bootstrap: 'bootstrap-loader',
},
...
}

Bootstrap 显然已加载,因为样式正确,并且我可以与模式和下拉菜单进行交互。但是, Bootstrap 事件不会触发。例如:

$('#foo').on('show.bs.dropdown', () => {
// never gets here when I click on #foo element and dropdown is shown
});

当我在控制台中检查 typeof($.fn.modal) === 'function' 时,我也得到 false

有谁知道我需要做什么才能将 bootstrap 正确加载到我的 webpack 项目中?

最佳答案

我发现我可以在 app 条目中加载我的 main.jsbootstrap-loader,现在 bootstrap 可以正确加载:

module.exports = {
entry: {
app: ['./src/main.js', 'bootstrap-loader']
},
...
}

关于javascript - Bootstrap 未在 webpack 项目中完全加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41512792/

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