如何在角度2中使用此模块?任何例子?
到目前为止,我安装了模块并导入了Angular 2组件.
导入并将其添加到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' } }