我想将保留在index.html中某个文件夹中的所有.js文件包括在内。 有没有办法在一个脚本标签中导入所有.js文件。 就像我们用*
导入包中的所有类一样src
Controller
| HomeController.js
| LoginController.js
| AboutController.js
Directive
Services
Views
index.html
<html>
<head>
<script src='Controller/*.js'>
</head>
<body>
</body>
</html>
我们可以在index.html中包含所有带有一个脚本标签的.js文件吗?
或
还有其他方法可以动态地包含所有这些js文件吗?