最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to include jQuery before angular in webpack with ES6? - Stack Overflow

programmeradmin1浏览0评论

I've tried to have this:

import $ from 'jquery';
window.jQuery = $;
import angular from 'angular';

but $.fn.scope is undefined and scripts inside ng-bind-html don't work Injecting a script tag with ngBindHtml

also tried this in webpack config

module.exports = {
  module: {
    loaders: [
       { test: /angular(\.min)?\.js$/, loader: "imports?$=jquery" },
       { test: /jquery(\.min)?\.js$/, loader: 'expose?jQuery' }
    ]
  }
};

but got error:

ERROR in ./~/angular/angular.js
Module not found: Error: Cannot resolve module 'expose' in C:\project\src\ui\node_modules\angular
 @ ./~/angular/angular.js 2:8-25

I've tried to have this:

import $ from 'jquery';
window.jQuery = $;
import angular from 'angular';

but $.fn.scope is undefined and scripts inside ng-bind-html don't work Injecting a script tag with ngBindHtml

also tried this in webpack config

module.exports = {
  module: {
    loaders: [
       { test: /angular(\.min)?\.js$/, loader: "imports?$=jquery" },
       { test: /jquery(\.min)?\.js$/, loader: 'expose?jQuery' }
    ]
  }
};

but got error:

ERROR in ./~/angular/angular.js
Module not found: Error: Cannot resolve module 'expose' in C:\project\src\ui\node_modules\angular
 @ ./~/angular/angular.js 2:8-25
Share Improve this question edited May 23, 2017 at 12:09 CommunityBot 11 silver badge asked Aug 22, 2016 at 13:05 jcubicjcubic 66.7k58 gold badges249 silver badges454 bronze badges 3
  • So I haven't used webpack, but I came across a similar loading issue with requireJS where I had to use a shim to express the module dependencies. github./webpack/docs/wiki/shimming-modules check this out for webpack shimming – Sterling Archer Commented Aug 22, 2016 at 13:18
  • @SterlingArcher your link did help, thanks. – jcubic Commented Aug 22, 2016 at 13:29
  • The issue is that import statements get hoisted, so window.jQuery = $; is executed after import angular from 'angular';. @MrJSingh's solution is pretty good for this problem though. – nils Commented Aug 22, 2016 at 14:00
Add a ment  | 

3 Answers 3

Reset to default 5

this work:

module.exports = {
  module: {
    loaders: [
       { test: /angular(\.min)?\.js$/, loader: "imports?$=jquery" },
       { test: /jquery(\.min)?\.js$/, loader: 'expose?jQuery' }
    ]
  }
};

but you need to install expose-loader from npm:

npm install expose-loader --save

Why not use a very nice and simple plugin for webpack

new webpack.ProvidePlugin({
  $: "jquery",
  jQuery: "jquery"
})

ES6-seed with webpack and jquery

We used @jcubic solution in webpack 4 like this:

npm install expose-loader imports-loader --save

module: {
  rules: [
    {
      test: require.resolve('angular'),
      use: 'imports-loader?$=jquery',
    },
    {
      test: require.resolve('jquery'),
      use: [
        {
          loader: 'expose-loader',
          options: 'jQuery',
        },
        {
          loader: 'expose-loader',
          options: '$',
        },
      ],
    },
  ]
}
发布评论

评论列表(0)

  1. 暂无评论