本文整理汇总了TypeScript中ionic-angular.Storage.clear方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Storage.clear方法的具体用法?TypeScript Storage.clear怎么用?TypeScript Storage.clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ionic-angular.Storage
的用法示例。
在下文中一共展示了Storage.clear方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(private nav: NavController,private navParams: NavParams, private msgPushService: MsgPushService) {
//this.state = navParams.get('evt');
this.storage = new Storage(SqlStorage);
this.storage.clear();
this.storage.get('states').then((data) => {
if (data != null) {
this.states = JSON.parse(data);
}else{
this.states = [];
this.url = "https://middle-men.herokuapp.com/workflows/578fb63722a15900035742b1/workflow_states/578fb6a622a15900035742b3";
this.pushMsg(this.url);
}
});
}
示例2: destroy
destroy(){
this.storage.clear();
}
示例3: clear
clear(): Promise<any> {
return this.storage.clear();
}