所以,今天我用AngularJS
创建了一个简单的登录页面。
此登录的目的是我要将form
的电子邮件存储到session
。
这是我的登录信息:
<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
的最佳方法是什么?
谢谢:)
答案 0 :(得分:0)
您还可以尝试根据window.sessionStorage
或window.localStorage
进行服务,以在页面重新加载之间保留状态信息。我在Web应用程序中使用它,该应用程序部分在AngularJS中制作,页面URL在&#34;旧方式&#34;对于工作流程的某些部分。 IE8甚至支持Web存储。为方便起见,这里是angular-webstorage。