从登录组件输入mobile no以验证来自otp组件的otp后,我需要用户输入的移动号码和国家/地区代码作为参数传递给otp服务中的api。我需要将数据从登录传递到otp组件我怎么能在angular2中执行呢?
答案 0 :(得分:1)
Sandip是对的。例如,在' SharedDataService':
中定义以下共享变量import { Injectable } from '@angular/core';
@Injectable()
export class SharedDataService{
hasUserLoggedIn: boolean;
}
然后在“AppComponent':
”中使用此服务@Component({
providers: [ SharedDataService ]
})
然后可以在整个应用程序中使用该变量。
答案 1 :(得分:0)