我在我的应用程序中使用Webpack,在其中我创建了两个入口点-所有JavaScript文件/代码的bundle.js,以及所有库(如jQuery和React)的vendor .js。为了使用有jQuery作为依赖项的插件,我想要在vendor .js中也有它们,我该怎么做?如果这些插件有多个依赖项怎么办?

目前我正在尝试使用这个jQuery插件在这里- https://github.com/mbklein/jquery-elastic。Webpack文档中提到了providePlugin和imports-loader。我使用了providePlugin,但jQuery对象仍然不可用。下面是我的webpack.config.js的样子

var webpack = require('webpack');
var bower_dir = __dirname + '/bower_components';
var node_dir = __dirname + '/node_modules';
var lib_dir = __dirname + '/public/js/libs';

var config = {
    addVendor: function (name, path) {
        this.resolve.alias[name] = path;
        this.module.noParse.push(new RegExp(path));
    },
    plugins: [
        new webpack.ProvidePlugin({
            $: "jquery",
            jquery: "jQuery",
            "window.jQuery": "jquery"
        }),
        new webpack.optimize.CommonsChunkPlugin('vendors', 'vendors.js', Infinity)
    ],
    entry: {
        app: ['./public/js/main.js'],
        vendors: ['react','jquery']
    },
    resolve: {
        alias: {
            'jquery': node_dir + '/jquery/dist/jquery.js',
            'jquery.elastic': lib_dir + '/jquery.elastic.source.js'
        }
    },
    output: {
        path: './public/js',
        filename: 'bundle.js'
    },
    module: {
        loaders: [
            { test: /\.js$/, loader: 'jsx-loader' },
            { test: /\.jquery.elastic.js$/, loader: 'imports-loader' }
        ]
    }
};
config.addVendor('react', bower_dir + '/react/react.min.js');
config.addVendor('jquery', node_dir + '/jquery/dist/jquery.js');
config.addVendor('jquery.elastic', lib_dir +'/jquery.elastic.source.js');

module.exports = config;

但尽管如此,它仍然在浏览器控制台抛出一个错误:

未定义jQuery

类似地,当我使用导入加载器时,它抛出一个错误,

Require没有定义

在这一行中:

var jQuery = require("jquery")

然而,我可以使用相同的插件,当我不添加到我的vendor .js文件,而是需要它在正常的AMD方式,我如何包括我的其他JavaScript代码文件,如-

define(
[
    'jquery',
    'react',
    '../../common-functions',
    '../../libs/jquery.elastic.source'
],function($,React,commonFunctions){
    $("#myInput").elastic() //It works

});

但这不是我想做的,因为这将意味着jQuery .elastic.source.js与我的JavaScript代码捆绑在bundle.js中,并且我希望我所有的jQuery插件都在vendor .js捆绑包中。那么我该怎么做呢?


当前回答

我不知道我是否很好地理解你要做的事情,但我不得不使用jQuery插件,需要jQuery在全局上下文中(窗口),我把以下内容放在我的entry.js:

var $ = require('jquery');
window.jQuery = $;
window.$ = $;

我只需要我想要的任何地方的jqueryplugin.min.js和窗口。$按预期与插件一起扩展。

其他回答

这适用于我的webpack.config.js

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

在另一个javascript或HTML添加:

global.jQuery = require('jquery');

我找到的最佳解决方案是:

https://github.com/angular/angular-cli/issues/5139#issuecomment-283634059

基本上,您需要在types .d中包含一个虚拟变量。ts,删除任何import * as $ from 'jquery"从你的代码,然后手动添加一个标签到jquery脚本到你的SPA html。这样,webpack就不会成为你的障碍,而且你应该能够在你的所有脚本中访问相同的全局jQuery变量。

将它添加到webpack.config.js的插件数组中

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

然后正常使用jquery

require('jquery');

如果疼痛持续让其他脚本看到它,尝试显式地将它放在全局上下文中(在入口js中)

window.$ = jQuery;

在Webpack 3.8.1和以下版本中,我将$和jQuery作为全局变量公开,使事情工作得很好。

将jQuery作为项目依赖项安装。您可以省略@3.2.1安装最新版本或指定其他版本。

npm install --save jquery@3.2.1

如果尚未安装,则将expose-loader安装为开发依赖项。

npm install expose-loader --save-dev

配置Webpack为我们加载和公开jQuery。

// webpack.config.js
const webpack = require('webpack')

module.exports = {
  entry: [
    // entry bits
  ],
  output: {
    // output bits
  },
  module: {
    rules: [
      // any other rules
      {
        // Exposes jQuery for use outside Webpack build
        test: require.resolve('jquery'),
        use: [{
          loader: 'expose-loader',
          options: 'jQuery'
        },{
          loader: 'expose-loader',
          options: '$'
        }]
      }
    ]
  },
  plugins: [
    // Provides jQuery for other JS bundled with Webpack
    new webpack.ProvidePlugin({
      $: 'jquery',
      jQuery: 'jquery'
    })
  ]
}

这适用于webpack 3:

在webpack.config.babel.js文件中:

resolve: {
    alias: {
         jquery: "jquery/src/jquery"
    },
 ....
}

并使用ProvidePlugin

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