admin管理员组文章数量:1349174
I am planing to implement angular material design with my application. i have included the material.js and material.css and the app definition goes as follows, here is the code,
Index.html:
<script src="js/ripples.js"></script>
<script src="js/material.js"></script>
app.js ar routerApp = angular.module('DiginRt', ['ui.bootstrap','SimpleCouch','ngMaterial']);
When i start to run the application, it says
Uncaught Error: [$injector:modulerr] Failed to instantiate module DiginRt due to:
Error: [$injector:modulerr] Failed to instantiate module ngMaterial due to:
Error: [$injector:nomod] Module 'ngMaterial' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
I am planing to implement angular material design with my application. i have included the material.js and material.css and the app definition goes as follows, here is the code,
Index.html:
<script src="js/ripples.js"></script>
<script src="js/material.js"></script>
app.js ar routerApp = angular.module('DiginRt', ['ui.bootstrap','SimpleCouch','ngMaterial']);
When i start to run the application, it says
Uncaught Error: [$injector:modulerr] Failed to instantiate module DiginRt due to:
Error: [$injector:modulerr] Failed to instantiate module ngMaterial due to:
Error: [$injector:nomod] Module 'ngMaterial' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
Share
Improve this question
edited Nov 3, 2016 at 17:08
Sajeetharan
asked Feb 10, 2015 at 5:33
SajeetharanSajeetharan
223k65 gold badges365 silver badges408 bronze badges
2
-
where do you put the
angular.js
reference, before or aftermaterial.js
? – Rebornix Commented Feb 10, 2015 at 5:38 - you'd better create a jsfiddler/plnkr.co/codpen demo app for better troubleshooting. – Rebornix Commented Feb 10, 2015 at 5:42
2 Answers
Reset to default 6I have created my angular material design project using this sequential injection, hope it helps,
<script src="bower_ponents/angular/angular.js"></script>
<script src="bower_ponents/angular-animate/angular-animate.js"></script>
<script src="bower_ponents/angular-route/angular-route.js"></script>
<script src="bower_ponents/angular-aria/angular-aria.js"></script>
<script src="bower_ponents/hammerjs/hammer.js"></script>
<script src="bower_ponents/angular-material/angular-material.js"></script>
...
<script src="app.js"></script>
Btw, did you install it using bower install angular-material --save?
The error is saying that it cannot find a dependency. It's likely you included your scripts in the wrong order. Make sure the app.js is included last. Without seeing a code example I cannot be any more specific than that. As @rebornix said, a jsfiddle or Plunker would be very helpful.
本文标签: javascriptAngular material with angularJS applicationStack Overflow
版权声明:本文标题:javascript - Angular material with angularJS application - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743855216a2550735.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论