ionic 3 - can't store to storage after http request
问题 I already read the docs regarding Ionic Storage and have already imported what is needed. But still can't seem to get it to work. When I check the localStorage of chrome (I use 'ionic cordova run browser'), it's empty. Here's my code: cordova.plugin.http.sendRequest('http://127.0.0.1:5000/api/login/', options, function(response) { try { //onSuccess response.data = JSON.parse(response.data); this.store.set('token', JSON.stringify(response.data.token)); this.navCtrl.setRoot(HomePage); } catch(e