Angular JS 앱을하려고하는데 몇 가지 질문이 있습니다.ng-view를 변경하는 방법
이것은 내 index.html을 코드
<body ng-app="StockApp">
<div id="wrapper" class="flex-column">
<div ng-hide="hideNavBar" id="navbarundsub">
</div>
<div ng-show="hideStockInformation" id="stockInformation">
</div>
<div id="main" class="flex-row">
<div ng-hide="hideSideMenu" id="sidemenu">
</div>
<div ng-hide="hideSideMenuUser" id="sidemenuUser">
</div>
<!--CONTENIDO-->
<ng-view></ng-view>
</div>
</div>
</body>
입니다 내 질문에 내 첫 번째 페이지 그래서 난 드 NG-보기는 div의 내부 login.html를 게재하지 않을 로그인 점이다, 그래서 나는 어떻게 ng-view를 바꿀 수 있는지 또는 로그인을 다른 페이지로 어떻게 넘길 수 있는지 모르겠다 ... 나는 모른다.
누군가 나를 도울 수 있기를 바랍니다.
을 참조
index.html을 https://thinkster.io/ 보기 자세한 내용은 https://www.tutorialspoint.com/angularjs/angularjs_views.htm –