我正在开发angularjs项目。我想将代码分离为模块化。在分离模块之后,我想将它组合在一个页面中。我如何在一个页面中组合模块?
答案 0 :(得分:1)
确保您已在index.html中包含每个模块的来源:
<script src="/bower_components/module-1/dist/module-1.min.js"></script>
<script src="/bower_components/module-2/dist/module-2.min.js"></script>
然后在你的index.js:
angular.module('myApp', [
'module1Name',
'module2Name'
]);