前提・実現したいこと
Webpackerを使用してjQuery-UIを導入したんですが、コンソールに下記のエラーが出ます。
Uncaught TypeError: $(...).autocomplete is not a function
該当のソースコード
application.js
require("@rails/ujs").start() require("turbolinks").start() require("@rails/activestorage").start() require("channels") require('jquery') // jquery import $ from 'jquery'; global.$ = $ global.jQuery = $ require('jquery-ui'); // jquery-ui theme require.context('file-loader?name=[path][name].[ext]&context=node_modules/jquery-ui-dist!jquery-ui-dist', true, /jquery-ui.css/ ); require.context('file-loader?name=[path][name].[ext]&context=node_modules/jquery-ui-dist!jquery-ui-dist', true, /jquery-ui.theme.css/ ); // Uncomment to copy all static images under ../images to the output folder and reference // them with the image_pack_tag helper in views (e.g <%= image_pack_tag 'rails.png' %>) // or the `imagePath` JavaScript helper below. // // const images = require.context('../images', true) // const imagePath = (name) => images(name, true)
enviroment.js
const { environment } = require('@rails/webpacker') const webpack = require('webpack') environment.plugins.prepend('Provide', new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' }) ); const aliasConfig = { 'jquery': 'jquery-ui-dist/external/jquery/jquery.js', 'jquery-ui': 'jquery-ui-dist/jquery-ui.js' }; environment.config.set('resolve.alias', aliasConfig); module.exports = environment
application.html.slim
doctype html html head title | CareerFinder = csrf_meta_tags = csp_meta_tag = stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' = javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' = stylesheet_link_tag '//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/le-frog/jquery-ui.min.css' body p.notice = notice p.alert = alert = yield
試したこと
https://python5.com/q/fulxlsen
上記サイトを参考に全て試したのですが、結果変わらず
他のサイトにも同様の内容が記載されており、どこが悪いのかわからなくなりました。
アドバイス等いただけると幸いです。
よろしくお願いいたします。
補足情報(FW/ツールのバージョンなど)
ruby '2.6.5'
rails '6.0.3'
あなたの回答
tips
プレビュー