我在我的应用程序中使用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,则存在几个选项。在我最近的webpack项目中,我想要全局访问jquery,所以我在我的插件声明中添加了以下内容:

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

这意味着jquery可以通过全局引用$和jquery从JavaScript源代码中访问。

当然,你还需要通过npm安装jquery:

$ npm i jquery --save

对于这种方法的工作示例,请随时在github上分叉我的应用程序

其他回答

这适用于webpack 3:

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

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

并使用ProvidePlugin

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

对于全局访问jquery,则存在几个选项。在我最近的webpack项目中,我想要全局访问jquery,所以我在我的插件声明中添加了以下内容:

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

这意味着jquery可以通过全局引用$和jquery从JavaScript源代码中访问。

当然,你还需要通过npm安装jquery:

$ npm i jquery --save

对于这种方法的工作示例,请随时在github上分叉我的应用程序

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

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

然后正常使用jquery

require('jquery');

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

window.$ = jQuery;

这适用于我的webpack.config.js

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

在另一个javascript或HTML添加:

global.jQuery = require('jquery');

无论谁在应用了这里找到的好的解决方案后遇到了任何问题,你所需要的只是简单地遵循webpack.config.js文件中的明确说明:

// uncomment if you're having problems with a jQuery plugin
.autoProvidejQuery()

通过取消注释这一行,您将使事情正常工作!