Laravel6.0以降でjQueryを使用する方法
LaravelでjQueryを使用する時にどこから読み込むのが良いか調べました。
laravel/uiをインストール
$ composer require laravel/ui
laravel/ui
パッケージを追加するとbootstrap.jsでjqueryが読みこまれるようになる。
/**
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
* for JavaScript based Bootstrap features such as modals and tabs. This
* code may be modified to fit the specific needs of your application.
*/
try {
window.Popper = require('popper.js').default;
window.$ = window.jQuery = require('jquery');
require('bootstrap');
} catch (e) {}
window.$ = window.jQuery = require('jquery');
で読み込まれる。
bladeテンプレートに<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
など書き込んで読み込ませる必要はありません。
resorceディレクトリにjsファイルを作成
$(function () {
$('#test_jquery').on('click', function() {
alert("Hello, jQuery!");
})
})
LarvelMixでコンパイルして読み込む
webpack.mix.js
に先ほど作成したresources/js/jquery.js
をコンパイルするように書き込む。
mix.js([
'resources/js/app.js',
'resources/js/jquery.js'
], 'public/js')
.sass('resources/sass/app.scss', 'public/css');
あとはyarn dev
もしくはnpm run dev
で自動でコンパイルしてくれる。
<button id="test_jquery">ぽちっとな</button>
なるべくpublicディレクトリに置いて、直接読み込むようなことはしない。
(おまけ)jquery-uiも追加してみる
jquery-uiをインストール
$ yarn add jquery-ui --dev
bootstrap.jsでjquery-uiを読み込む
今回は並び替えのsortable.jsを読み込んでみます。
try {
window.Popper = require('popper.js').default;
window.$ = window.jQuery = require('jquery');
require('jquery-ui/ui/widgets/sortable.js');
require('bootstrap');
} catch (e) {}
jquery.jsに並び替えのコードを追加
$(function() {
$("#box").sortable({
axis: "y",
opacity: 0.5,
update: function() {
console.log('並び替えました');
}
});
});
これで動きました。
Author And Source
この問題について(Laravel6.0以降でjQueryを使用する方法), 我々は、より多くの情報をここで見つけました https://qiita.com/ikadatic/items/c033ab1244f53a895496著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .