如何在角度的get方法url中间传递值

时间:2018-08-30 10:48:44

标签: angular

这是我的登录模型

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;
        }

0 个答案:

没有答案