laravel+adminlte3 jquery和其他依赖项

kyks70gy  于 2021-09-13  发布在  Java
关注(0)|答案(1)|浏览(292)

我在laravel 8中发现了一个集成adminlte的链接,并遵循了它。
这里是链接。
但是当我要使用jquery的 document.readytoastr . 上面说 $ not defined or toastr not defined . 我没有安装jquery或 toastr 因为我假设它包括在adminlte中,正如文档所说。
有人能帮我吗?谢谢

eqoofvh9

eqoofvh91#

要将jquery添加到laravel,首先必须添加搭建的javascript文件app.js
添加此标记可以轻松完成此操作。 <script src="{{ asset('js/app.js') }}"></script> 请看完整的答案。https://stackoverflow.com/a/56794159/14249612

相关问题