我有一個問題,我想知道什麼是最好的創建一個登錄頁面。AngularJS和登錄頁面
實際上,我創建了一個名爲/ login的ng-view根(在我的app.js中'when ... then')。
這種方法的問題是我必須使用ng-include將我的靜態HTML包含在其他文件中。 (我不需要這個靜態的HTML在我的登錄頁面,所以NG-的觀點是身體一前一後第一坊間行動。)
例如,我有我的index.html的身體,看起來像:
<body>
<div ng-view></div>
</body>
我的泛音登錄包含一個表單連接(簡單形式)(/登錄)
<form>
<input type="text" ng-model="login" placeholder="login">
<input type="text" ng-model="password" placeholder="password">
</form>
我的其他文件,如(/用戶/客戶/計費等)的樣子:
<div ng-include="partials/menu.html"></div>
My custom content
<div ng-include="partials/footer.html"></div>
這是一個好方法嗎?還是它存在一個更好的?
謝謝大家。
也許,你應該張貼在http://codereview.stackexchange.com/ – zishe
看看角度,應用安全模塊,有一些很好的想法:https://github.com/ angular-app/angular-app/tree/master/client/src/common/security –