Skip to content Skip to sidebar Skip to footer

Angular Unknown Provider And Cannot Post /signup

Before you say anything, I know the solution probably is to inject the dependency but I checked other open source codes and compare it with mine, it is exactly the same. While thei

Solution 1:

Youd didn't add

<scriptsrc="angular-route.js">

Order must be this :

<scriptsrc="app/app.js"></script><scripttype="text/javascript"src="app/services/factories.js"></script><scripttype="text/javascript"src="app/controllers/userController.js"></script>

That's why it is showing unknown provider for route.

Post a Comment for "Angular Unknown Provider And Cannot Post /signup"