如何使jhipster api可访问或使用php等其他应用程序

时间:2019-03-23 00:17:03

标签: api jhipster

我用jhipster创建了一个应用程序,但我想在另一个应用程序中调用我的jhipster api,但是我无法管理该操作

getIconFromJhipsterAPi() { 
this.httpClient.get<any[]>('http://localhost:9000/api/icons')
  .subscribe(
    (response) => {
     this.icons =response;
    },
    (error) => {
      console.log( error );
    }
  );

}

0 个答案:

没有答案