我想将一个字符串变量从 ionic/storage 添加到 html。
主页.ts
export class HomePage {
@ViewChild('username') uname;
constructor(public navCtrl: NavController, public alertCtrl: AlertController, public strg: Storage) {
}
signIn() {
this.strg.set('uname', this.uname.value);
this.navCtrl.push(Page1Page);
}
}
page1.html
<ion-content padding>
<p>Welcome to this app, /**I want to add the uname here**/ </p>
</ion-content>
我将如何使用 page1.ts 从 ionic/storage 分配字符串?