这是我的登录模型
Login.ts:
WebsecurityConfig
用户登录后。我要使用服务文件中以下网址中间的登录模型的[no]值来获取客户详细信息。
Checkout.service.ts:
MOVE x'0807060504030201' TO TGT
INSPECT TGT CONVERTING x'0102030405060708' TO SRC
我试图通过绑定获取值,但没有获取客户详细信息。如何实现这一点。
checkout.ts:
export class Login{
access_token : string;
token_type : string;
expires_in : string;
refresh_token : string;
FirstName : string;
LastName : string;
Email : string;
AccountNo : string;
client_Id : string;
}
html:
login:Login[]
async getAddress() {
const address = await this.httpClient.get<Customer[]>('http://localhost:49456/api/customer/' + '{{login.AccountNo}}' +'/profile/', { withCredentials: true })
.toPromise();
return address;
}