How to implement page nesting in the local IDE without configuring the server
<p ng-app="" ng-controller="studentController">
<p ng-include="'main.html'"></p>
<p ng-include="'subjects.html'"></p>
</p>
ng-include
It seems that the server must be configured to execute. How can it be executed without the server?
滿天的星座2017-05-15 17:16:21
You can’t do this without service. You should write html and use ng-show to control display and hiding