由于升级到Webpack@2.7.0,我不得不升级Bootstrap(4.0.0-alpha.2 - > 4.0.0)和Bootstrap-loader@2.2.0。在应用程序中,我有一个复选框,当取消选中时应该打开一个模态。我一直在使用正在运行的jQuery('#confirmModal').modal('show')
。但是自升级以来我注意到我发现jQuery(..).modal('show') is not a function
错误。 jQuery(..).click(function(){})
也不起作用,但我没有看到错误。
这是我的vendor.ts
,
import "jquery";
import "jquery-ui";
import "popper.js/dist/umd/popper";
import 'bootstrap/dist/js/bootstrap.bundle.min.js';
import "hammerjs/hammer.js";
import "bootstrap-loader";
我是否需要提供一些方法来解决这个问题?