0

I am very dificulty to resolve the following error in my applications client-side using AngularJS:

enter image description here

Any help or advice would be appreciated. Thanks

J. Moura
  • 27
  • 7

2 Answers2

0

Looks like angular can not inject module due to an exception - https://docs.angularjs.org/error/$injector/modulerr

It's hard to tell what it could be from your image.

fmaina
  • 36
  • 1
0

That error generally indicates that you either forgot to include the requested file. i.e. no <script> tag for the file or there is a syntax error in the file that it is trying to inject.

BShaps
  • 1,344
  • 7
  • 17
  • Okay, I was able to solve the previous error. Now, I have the status of the controller and service request ok, but at the time of printing the data from my web api on the server side I do not get the data in my index.html – J. Moura Jan 19 '19 at 17:52