0
因此,今天我做一個簡單的登錄頁面AngularJS
。 而這個登錄的目的是我想將電子郵件從form
存儲到session
。在AngularJS的會話中存儲電子郵件
這是我的登錄名:
<label class="item item-input">
<input type="email" placeholder="Email" ng-model="data.email" required>
</label>
<label class="item item-input">
<input type="password" placeholder="Password" ng-model="data.password" required>
</label>
如果我們可以參考PHP
編程語言,你可以使用$_SESSION['email']
和您存儲email
到session
。 我已經讀到$SessionStorage
Sample Example
怎樣做專賣店session
在AngularJS
最好的方法有幾個文章?
謝謝:)