Skip to content Skip to sidebar Skip to footer

Angular Js Does Not Work

This is my html file. The angular.js file is under java/main/webapp/js folder and Intellij can see it when I click on it, yet the code does not work! I get a print on screen {{hell

Solution 1:

You forgot ng-app , put it in the body tag:

 <body ng-app>

Have a look at working example.


Post a Comment for "Angular Js Does Not Work"