我正在尝试使用magicscroller创建卡布局轮播。 因此,我的应用程序中同时引用了magicscroller的.css和.js。 css文件可以正常工作,但是找不到.js文件。
我在chrome调试器中收到此错误消息: GET http://localhost:4200/magicscroll.js net :: ERR_ABORTED 404(未找到)
这是我的文件夹结构: https://imgur.com/a/d9G2DbT
我尝试在angular.json和index.html(位于src文件夹中)中引用.js文件。
angular.json:
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js",
"magicscroll/magicscroll.js"
],
index.html:
<script type="text/javascript" src="magicscroll.js"></script>
<script type="text/javascript" src="magicscroll/magicscroll.js"></script>
<script type="text/javascript" src="./magicscroll/magicscroll.js"></script>