トークン値をイオンデータストレージに保存し、ダッシュボードに表示したダッシュボードの画像を添付しました。ブラウザでは表示されますが、モバイルでは表示されませんでした
また、Ionicストレージから値を保存および取得するコードも添付しました
応答値を Ionic Storage に保存する
// "token":"v7gtljulmg2t4doheuik4c8m7f1xg28n"
this.api.postRequest(loginobj).subscribe(res =>{
this.storage.set('token', res[0].message);
Ionic Storage から値を取得する
//値を取得する
this.storage.get ('token')
.then(res => {
this.tokens1 = res;
});
In Html In p tag imdisplay this value {{tokens1}} 200.00