在使用 Webpack 迁移到 Rails 6 后,我得到了 Uncaught TypeError: $(...).tablesorter is not a function
。这是我的 environment.js
const { environment } = require('@rails/webpacker')
const webpack = require('webpack')
environment.plugins.prepend('Provide',
new webpack.ProvidePlugin({
$: 'jquery/src/jquery',
jQuery: 'jquery/src/jquery',
tablesorter: 'tablesorter',
bootstrap: 'bootstrap/dist/js/bootstrap',
draggable: 'plain-draggable'
})
)
module.exports = environment
其他相关插件工作正常。