如何使用angular 5安全地存储当前用户数据?

时间:2018-08-12 10:36:16

标签: angular userid

我在laravel(后端)和angular(前端)中有项目。我需要知道如何将用户数据安全地存储在本地服务器(客户端)中。什么是最佳和可靠的使用方法。任何角度插件或其他。以及如何以角度获取当前用户的用户ID。

谢谢

2 个答案:

答案 0 :(得分:0)

您可以使用 angular-web-storage

angular-web-storage

stackblitz demo

用于保存和还原HTML5本地和会话存储的角度装饰器

安装:

npm install angular-web-storage --save

AngularWebStorageModule导入模块中。

import { AngularWebStorageModule } from 'angular-web-storage';

@NgModule({
    imports: [ 
        BrowserModule,
        AngularWebStorageModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
export class AppModule { }

答案 1 :(得分:0)

只要数据不敏感,就可以使用laravel对其进行加密并将其存储在客户端浏览器的cookie中。