bundle.js:Uncaught Error:Bootstrap的JavaScript需要jQuery

时间:2016-08-08 09:33:23

标签: angularjs twitter-bootstrap-3 webpack bundle

即使在我将jquery文件调用为bootstrap.js后,我也收到此错误。 有人建议吗? 我正在使用node和angularr以及webpack。

我的这种说法是这样的。

require('jquery/dist/jquery.min.js');
require('bootstrap/dist/css/bootstrap.css');
require('bootstrap/dist/js/bootstrap.js');
require('./content/common.css');
require('angular');

请在此提出原因!

谢谢,

1 个答案:

答案 0 :(得分:1)

可以尝试加载jQuery,如下所示:

窗口。$ = window.jQuery = require('jquery / dist / jquery.js');

然后,

var Bootstrap = require('bootstrap / dist / js / bootstrap.js');