我用jhipster
创建了一个应用程序,但我想在另一个应用程序中调用我的jhipster api,但是我无法管理该操作
getIconFromJhipsterAPi() {
this.httpClient.get<any[]>('http://localhost:9000/api/icons')
.subscribe(
(response) => {
this.icons =response;
},
(error) => {
console.log( error );
}
);
}