编辑:用错误的错误消息完成我的问题。
我试图通过Angular2在我的网络服务器上执行HTTP请求。
这是我的方法:
getClientInformations(id): Promise<ClientInformations> {
return this.http.post(this.clientInfoUrl,
JSON.stringify({ data: id }),
{ headers: this.headers })
.toPromise()
.then(response => response.json() as ClientInformations)
.catch(this.handleError);
}
我收到2个错误:
Property&#39; ClientId&#39;类型&#39; Promise&lt; ClientInformations&gt;&#39;。
类型&#39;承诺&lt; ClientInformations&gt;&#39;不能分配给类型 &#39; ClientInformations&#39;
这是client.informations.ts:
export class ClientInformations {
ClientId: string;
ClientName: string;
NbUser: number;
}