如何让 JQuery 与 Rails 6 和 Webpacker 6 一起工作

How do you get JQuery to work with Rails 6 and Webpacker 6

我真不敢相信让 JQuery 与 Rails 6 和 Webpacker 6 一起工作会如此困难。

Rails 6: How to add jquery-ui through webpacker? 中的建议似乎没有用,但很难知道它是否是相同的代码堆栈。

我正在使用 Rails 6.1 和 Webpacker 6.0 的预发布版本来让 Heroku 正常运行。哦,我的大部分“Javascript”都在 .coffee 文件中。

我什至尝试将 application.js 重命名为 application.coffee 并重新格式化,但这也没有用。

我的 Gemfile 有

gem 'webpacker', '~> 6.0.0.beta.6'

我已经完成了以下操作

yarn add jquery jquery-ui-dist jquery-blockui

然后在webpacker 6中样式配置如下:

# config/webpacker/base.js
const { webpackConfig, merge } = require('@rails/webpacker')

const customConfig = require('./custom')

module.exports = merge(webpackConfig, customConfig)
# config/webpacker/custom.js
module.exports = {
    resolve: {
        alias: {
            jquery: 'jquery/src/jquery',
            jquery_ui: 'jquery-ui-dist/jquery-ui.js'
        }
    }
}

# code/app/packs/entrypoints/application.js

global.$ = require("jquery")
require("jquery") // Don't really need to require this...
require("jquery-ui")
require("jquery-ui-dist/jquery-ui")

这是来自多个来源的尝试的大杂烩,包括 post - Rails 6: How to add jquery-ui through webpacker?https://github.com/rails/webpacker

顺便说一句,我正在尝试从 Rails 5 迁移我的 Coffescript,因此这广泛使用了 JQuery $ global.

非常感谢任何帮助。

按照给定文章中的“更新”答案进行操作。

https://gorails.com/forum/install-bootstrap-with-webpack-with-rails-6-beta

首先将JQuery添加到项目中:

yarn add jquery

然后在config/webpack/environment.js中加入webpack plugins:

const { environment } = require('@rails/webpacker')
const webpack = require('webpack')

environment.
  plugins.
  append(
    'Provide',
    new webpack.ProvidePlugin({
      $: 'jquery',
      jQuery: 'jquery'
    })
  )

就是这样

在 webpacker 6.0 中,您可以使用以下方法之一:

  1. 直接更新config/webpack/base.js:
const { webpackConfig } = require('@rails/webpacker')
const webpack = require('webpack')

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

module.exports = webpackConfig
  1. 使用自定义配置并将其合并到基础:
// config/webpack/base.js

const { webpackConfig, merge } = require('@rails/webpacker')
const customConfig = require('./custom')

module.exports = merge(webpackConfig, customConfig)
// config/webpack/custom.js

const webpack = require('webpack')

module.exports = {
  plugins: [
    new webpack.ProvidePlugin({
      $: 'jquery',
      jQuery: 'jquery'
    })
  ]
}

所以在 mechnicov 的帮助下,我的最终解决方案是,正如他所建议的那样:

// config/webpack/base.js

const { webpackConfig, merge } = require('@rails/webpacker')
const customConfig = require('./custom')

module.exports = merge(webpackConfig, customConfig)
// config/webpack/custom.js

const webpack = require('webpack')

module.exports = {
    resolve: {
        alias: {
            $: 'jquery/src/jquery',
            jQuery: 'jquery/src/jquery',
            jquery: 'jquery',
            'jquery-ui': 'jquery-ui-dist/jquery-ui.js'
        }
    },
    plugins: [
        new webpack.ProvidePlugin({
            $: 'jquery',
            jQuery: 'jquery'
        })
    ],
    // Eliminate CORS issue
    devServer: {
        host: 'localhost',
        port: 3000
    }
}
# app/packs/entrypoints/application.js

// Make jQuery available everywhere
global.$ = require('jquery'), require('jquery-ui'), require('jquery-blockui')
...

我不知道这是否是最优雅的解决方案(是否需要解析、插件和 application.js 行?),但它有效。

顺便说一句,还需要确保 webpacker gem 和相应的 yarn 模块都是 6.0.0.beta.6 版本(参见 https://github.com/rails/webpacker

# Gemfile

gem 'webpacker', '6.0.0.beta.6'
$ yarn add @rails/webpacker@6.0.0-beta.6