angularjs - Eclipse Angular JS HTML file doesn't give Completion feature -
i not completion angular js eclipse based file. know there lot of tutorials setting proper angular js eclipse. read , followed same , didn't worked still. followed official link-> [angular js eclipse github setup link][1]
i installed, “angular js” “eclipse->help menu->eclipse marketplace”
it got installed , restarted.
then, eclipse->new->static web project
then, convert project angular. right click project, configure-> convert angular js project
then, adding new html files. right click project, new->html file
simple code:
<!doctype html> <html lang="en-us" ng-app> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script> <body> <div> <p>name : <input type="text" ng-model="name"></p> <h1>hello {{name}}</h1> </div> </body> </html>
it works fine. runs in browser well.
my problem is, why not show completion when type on "ng-" , use control + space in mac eclipse ? when move cursor on "ng", gives of "div" tag rather "ng" help. want type "ng-" , list of available methods press control + space in mac eclipse
i can understand there angular installation problem. but, none of existing solution solved issue.
Comments
Post a Comment