我讀了this關於如何包含像JQuery這樣的庫的文檔頁面。我繼續像這樣:在Laravel 5.5中包含JS庫
npm install jquery
npm run dev
由於JQuery的沒有成爲在此之後神奇地可用,我環顧四周,並且有它被引用並在public/js/app.js
使用。所以我在我的主佈局文件中使用了以下行,現在我可以使用JQuery。
<script src="{{asset('js/app.js')}}"></script>
我沒有看到這樣的解決方法具競爭力的超低,所以我的問題是,我是這樣做的權利?此外,我在控制檯中出現此錯誤:
TypeError: window.Laravel is undefined[Learn More] http://localhost/js/app.js:1697:1 webpack_requirehttp://localhost/js/app.js:20:12 http://localhost/js/app.js:778:1 webpack_requirehttp://localhost/js/app.js:20:12 http://localhost/js/app.js:41491:1 webpack_requirehttp://localhost/js/app.js:20:12 http://localhost/js/app.js:66:18 http://localhost/js/app.js:1:11
它的laravel 5.4 ... – Fahmi