我们最近从 sprockets 更新到 webpack,但我正在努力更新 bootstrap-tokenfield 库

We recently updated from sprockets to webpack, but I am struggling to update the bootstrap-tokenfield library

我们最近将 rails 应用程序从 sprockets 更改为 webpack,除了 bootstrap-tokenfield 之外,一切似乎都顺利进行了移植。在开发环境服务器上,它表示所有内容都已编译,但令牌字段未按应有的方式呈现。

我试过切换对应的css的location/name,我试过将JS库附加到环境插件中,但无济于事。

environment.js

// for loading css ...
const merge = require('webpack-merge')
const myCssLoaderOptions = {
  modules: true,
  sourceMap: true,
  localIdentName: '[name]__[local]___[hash:base64:5]'
}
const CSSLoader = environment.loaders.get('sass').use.find(el => el.loader === 'css-loader')
CSSLoader.options = merge(CSSLoader.options, myCssLoaderOptions)


const webpack = require('webpack');
environment.plugins.append('Provide', new webpack.ProvidePlugin({
  $: 'jquery',
  jQuery: 'jquery',
  Popper: ['popper.js', 'default']
}));

module.exports = environment

application.js

import Turbolinks from 'turbolinks';
import 'bootstrap/dist/js/bootstrap';
import 'trix';
import 'chosen-js';
import '@coreui/coreui';
import 'jquery-ui';
import 'bootstrap-tokenfield'

Rails.start();
Turbolinks.start();

$(document).ready(function(){

    $('form').on('click', '.remove_record', function(event) {
        $(this).prev('input[type=hidden]').val('1');
        $(this).closest('tr').hide();
        return event.preventDefault();
      });

    $('form').on('click', '.add_fields', function(event) {
      var regexp, time;
      time = new Date().getTime();
      regexp = new RegExp($(this).data('id'), 'g');
      $('.fields').append($(this).data('fields').replace(regexp, time));
      return event.preventDefault();
    });

  });


  $(document).on('click', "tr[data-link]", function(){
    window.location = $(this).data("link")
  });

   $(document).on('turbolinks:load', function() {
    $('.chosen-select').chosen({
      disable_search_threshold: 10, 
      width: '140px'
    })

    $('.chosen-select-form').chosen({
      disable_search_threshold: 7, 
      width: '100%'
    })

    $('[data-toggle="tooltip"]').tooltip()
  })

application.scss(链轮还在编译中)

/*

*= require_tree .
*= require chosen
*= require jquery-ui
*= require bootstrap-tokenfield
//*= require trix 

 *
 */

 // "bootstrap-sprockets" must be imported before "bootstrap" and "bootstrap/variables"
@import "bootstrap";
@import "font-awesome";
@import '@coreui/coreui/dist/css/coreui.min';

我希望内置令牌字段的视图呈现令牌字段输入,但它们目前只显示常规文本输入。

我只是将 jquery ui 和 bootstrap 令牌字段库直接包含在 layout.html.erb 页面上并修复了它。