导入并添加到 bootstrap()
bootstrap(AppComponent, [OtherProvider, LocalStorage]);
Run Code Online (Sandbox Code Playgroud)
将其注入要使用它的组件,指令或服务中.
export class SomeComponent {
constructor(private ls:LocalStorage) {}
clickHandler() {
this.ls.set('someKey', 'someValue');
}
otherClickHandler() {
console.log(this.ls.get('someKey'); // should print 'someValue'
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
31643 次 |
| 最近记录: |