【发布时间】:2017-11-26 15:57:11
【问题描述】:
最初我的 app.component.ts 文件被加载,然后我有两个变量 name 和 email 从 API get 调用更新,为了进行这个 api 调用,如果我没有用户名,我需要用户名我将无法更新此名称和电子邮件。
一旦我得到用户名,我将能够进行 api 调用,但我的用户名只有在登录成功后才可用。
我的 app.html 有这个,下面的代码是我的侧边菜单的一部分
<ion-item class="profile-info">
<ion-icon name="person" item-left></ion-icon>
<h2>{{name}}</h2>
<p class="se-email">{{email}}</p>
</ion-item>
我的 app.component.ts 文件有这个
name
email
if(localStorage.getItem("username")){
//here it is invoking 2nd time because i have stored the username after login so no problem
this.getUserDetails();//this function call the same api
}else{
//at first thime i am not able update the name and email because i dont have username
//so i am trying to update the name with set and get method where it will return my data
this.name =this.service.getUserName();
this.email = this.service.getUserEmail();
}
问题
我无法从主页或登录页面更新名称和电子邮件变量
如何从另一个页面(如 home.ts 或 login.ts)更新我的 app.component.ts 文件
更新:
我的完整 app.html 页面
<ion-menu [content]="content">
<ion-header id="slidermenu_header">
<ion-toolbar>
<ion-title style="padding: 0 8px 4px;">SEcure Me</ion-title>
</ion-toolbar>
</ion-header>
<ion-content class="slidermenu_content">
<ion-list style="margin: -1px 0 24px -5px;">
<ion-item class="profile-info">
<ion-icon name="person" item-left></ion-icon>
<h2 >{{name}}</h2>
<p class="se-email">{{email}}</p>
</ion-item>
</ion-list>
<div id="slidermenulist">
<ion-item *ngFor="let p of pages" (click)="openPage(p)" menuClose>
<ion-icon [name]="p.icon" item-left></ion-icon>
{{p.title}}
</ion-item>
</div>
</ion-content>
</ion-menu>
<!-- Disable swipe-to-go-back because it's poor UX to combine STGB with side menus -->
<ion-nav [root]="rootPage" #content swipeBackEnabled="false"></ion-nav>
从上面的代码你可以看到我在我的应用程序中只使用了一个侧边菜单,但是如果我在很多页面上都使用这个侧边菜单
如果我想在此处更新我的姓名和电子邮件,我必须转到我的 app.component.ts 文件,例如 this.name="username"' and this.email="email@gmail.com"` 工作正常
同样,如果我在 home.ts 文件中提供姓名和电子邮件,我将看不到任何内容
【问题讨论】:
-
请检查我的答案