所以,我正在使用这样的代码在我的index.html中加载一堆.js文件...
<script src="Login/login.js"></script>
<script src="Home/home.js"></script>
<script src="Authentication/auth.js"></script>
当我在login.js中时,我可以简单地注入auth模块并且它可以工作,而无需在app.js(在父模块中)中注入auth模块,并且在login.html中也没有以下代码
<script src="Authentication/auth.js"></script>
任何人都可以帮助我理解实现这一点的 Angular 机制吗?子状态如何能够注入在index.html中加载的模块?
祝你好运!