angularjs – 如何在Angular 2应用程序中使用angular2-local-storage模块

前端之家收集整理的这篇文章主要介绍了angularjs – 如何在Angular 2应用程序中使用angular2-local-storage模块前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在角度2中使用此模块?任何例子?

到目前为止,我安装了模块并导入了Angular 2组件.

https://www.npmjs.com/package/angular2-local-storage

导入并将其添加到bootstrap()
bootstrap(AppComponent,[OtherProvider,LocalStorage]);

将其注入要使用它的组件,指令或服务.

export class SomeComponent {
  constructor(private ls:LocalStorage) {}
  clickHandler() {
    this.ls.set('someKey','someValue');
  }
  otherClickHandler() {
    console.log(this.ls.get('someKey'); // should print 'someValue'
  }
}
原文链接:https://www.f2er.com/angularjs/142616.html

猜你在找的Angularjs相关文章