创建服务
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
import 'rxjs/add/observable/of';
import 'rxjs/add/observable/from';
@Injectable()
export class MyService {
thingTwoStream = new Subject();
ApiKey = new BehaviorSubject<string>(null);
}
然后在登录组件中使用next方法共享值
import { Component, OnInit, Injectable } from '@angular/core';
import { User } from '../domain/User';
import { HttpClient, HttpHeaders } from '@angular/common/http';
import { LoginResponse } from '../domain/LoginResponse'
import { MyService} from './myservice';
@Component({
selector: 'app-login',
templateUrl: './login.component.html',
styleUrls: ['./login.component.css']
})
@Injectable()
export class LoginComponent implements OnInit {
private user:User = new User();
private xSSOFamilyId:string = 'BOMO';
private apiKey:string;
constructor(private httpClient: HttpClient,private service:MyService) { }
ngOnInit() {
}
login(): void {
var authorization:string = 'Basic ' + btoa(this.user.cwopa + ":" + this.user.password);
var httpHeaders = new HttpHeaders({
'Authorization': authorization,
'userId': this.user.cwopa,
'X-SSO-Family-Id': this.xSSOFamilyId
});
this.httpClient.post<LoginResponse>('http://localhost:8081/web-beginner/authenticate', undefined, {headers: httpHeaders}).subscribe(response => {
this.apiKey = response.apiKey;
console.log(this.apiKey)
window.location.href = "dashboard";
}, error => {
console.log("error occured");
});
}
public getApiKey(): string {
this.service.ApiKey.next(this.apiKey);
return this.apiKey;
}
}
然后在仪表板组件中订阅
import { Component, OnInit } from '@angular/core';
import {LoginComponent} from "../login/login.component"
import { MyService} from './myservice';
@Component({
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.css'],
providers: [LoginComponent]
})
export class DashboardComponent implements OnInit {
constructor(public loginComponent: LoginComponent,private service:MyService) { }
ngOnInit() {
this.service.ApiKey.subscribe((data)=>console.log(data))
}
authorize(appName:string): void {
console.log(this.loginComponent.getApiKey())
}
}